Fix zero_ext documentation
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / sum.c
index 6dd7a7511a8ba06bccd43cdbfc4e52e76c81dfe8..3e27fa1a41a19eba2d960078710ea482029da9a6 100644 (file)
@@ -1,12 +1,7 @@
 /* This is a sample program for the HP/DDE debugger. */
 #include <stdio.h>
 
-#ifdef PROTOTYPES
 int sum(int *list, int low, int high)
-#else
-int sum(list, low, high)
-int *list, low, high;
-#endif
     {
         int i = 0, s = 0;      /* stop-in-sum */
         for (i = low; i <= high; i++)
This page took 0.050067 seconds and 4 git commands to generate.