import gdb-1999-06-28 snapshot

This commit is contained in:
Jason Molenda
1999-06-28 16:06:02 +00:00
parent 303f629d61
commit 085dd6e638
146 changed files with 8298 additions and 4750 deletions

View 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;