import gdb-1999-06-28 snapshot
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / shr2.c
index 94d5df962a574ad31e3f6683895b9328bebde1a9..de34986d76d57ac433b04f7995ad46cf114de104 100644 (file)
@@ -1,11 +1,17 @@
-int shr2(x)
+#ifdef PROTOTYPES
+int shr2(int x)
+#else
+int shr2(x) int x;
+#endif
 {
   return 2*x;
 }
 
-int shr2_local(x)
+#ifdef PROTOTYPES
+int shr2_local(int x)
+#else
+int shr2_local(x) int x;
+#endif
 {
   return 2*x;
 }
-
-
This page took 0.023925 seconds and 4 git commands to generate.