import gdb-1999-06-28 snapshot
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / scope1.c
index cccad6f321e949c43c204f99441b1ea4df067ec2..8c3252249930f766a459dc2601abc9a4846265f4 100644 (file)
@@ -5,8 +5,11 @@ static int filelocal_bss;      /* In BSS section */
 #endif
 static const int filelocal_ro = 202;   /* In Read-Only Data section */
 
-foo ()
+void foo ()
 {
+
+  void bar ();
+  
   static int funclocal = 3;    /* In Data section */
   static int funclocal_bss;    /* In BSS section */
   static const int funclocal_ro = 203; /* RO Data */
@@ -16,28 +19,34 @@ foo ()
   bar ();
 }
 
-bar ()
+void bar ()
 {
   static int funclocal = 4;    /* In data section */
   static int funclocal_bss;    /* In BSS section */
   funclocal_bss = 104;
 }
 
-init1 ()
+void init1 ()
 {
   filelocal_bss = 102;
 }
 
 /* On some systems, such as AIX, unreferenced variables are deleted
    from the executable.  */
-usestatics1 ()
+void usestatics1 ()
 {
+  void useit1 (int val);
+  
   useit1 (filelocal);
   useit1 (filelocal_bss);
   useit1 (filelocal_ro);
 }
 
-useit1 (val)
+#ifdef PROTOTYPES
+void useit1 (int val)
+#else
+void useit1 (val) int val;
+#endif
 {
     static int usedval;
 
This page took 0.025625 seconds and 4 git commands to generate.