import gdb-1999-06-28 snapshot
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / signals.c
index 280e6e7c5d8f099ce8ddaf1cf3f7273187f1a470..f1ebcfccb3d272380b83da6e43b5f17c5b754280 100644 (file)
@@ -1,6 +1,7 @@
 /* Test GDB dealing with stuff like stepping into sigtramp.  */
 
 #include <signal.h>
+#include <unistd.h>
 
 #ifdef __sh__
 #define signal(a,b)    /* Signals not supported on this target - make them go away */
@@ -9,9 +10,14 @@
 
 static int count = 0;
 
+#ifdef PROTOTYPES
+static void
+handler (int sig)
+#else
 static void
 handler (sig)
      int sig;
+#endif
 {
   signal (sig, handler);
   ++count;
This page took 0.02486 seconds and 4 git commands to generate.