* gas/config/tc-avr.c: Change ISA for devices with USB support to
[external/binutils.git] / gdb / testsuite / gdb.base / signals.c
index 280e6e7..51e97c4 100644 (file)
@@ -1,17 +1,19 @@
 /* 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 */
-#define alarm(a)       /* Ditto for alarm() */
-#endif
 
 static int count = 0;
 
+#ifdef PROTOTYPES
+static void
+handler (int sig)
+#else
 static void
 handler (sig)
      int sig;
+#endif
 {
   signal (sig, handler);
   ++count;
@@ -32,10 +34,6 @@ func2 ()
 int
 main ()
 {
-#ifdef usestubs
-  set_debug_traps();
-  breakpoint();
-#endif
 #ifdef SIGALRM
   signal (SIGALRM, handler);
 #endif