Fix gdb.multi/base.exp testsuite regression
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.multi / hello.c
index efff59d0fa4017f7aec6f2ba7a6afeb17caaa13a..93d921f68a102d18e7f7c75da9ce8daa286be2c4 100644 (file)
@@ -21,20 +21,23 @@ short hglob = 1;
 
 short glob = 92;
 
-int commonfun() { bar(); } /* from hello */
-
+void
 bar()
 {
   if (glob == 0)
     exit(1);
 }
 
+int commonfun() { bar(); } /* from hello */
+
+int
 hello(int x)
 {
   x *= 2;
   return x + 45;
 }
 
+int
 main()
 {
   int tmpx;
This page took 0.024468 seconds and 4 git commands to generate.