summaryrefslogtreecommitdiff
path: root/gdb/event-top.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-02-08 05:06:13 +0000
committerAndrew Cagney <cagney@redhat.com>2001-02-08 05:06:13 +0000
commitc7ef88b6b23866b0cfdb1dbc0169df39b2ceae4e (patch)
tree01a86de72a7b6d45b5c6afe2470f226a3456bbaa /gdb/event-top.h
parent4f59f135eb9ce3b7e25c5447b12df4762f4089b1 (diff)
downloadgdb-c7ef88b6b23866b0cfdb1dbc0169df39b2ceae4e.tar.gz
From Mark Kettenis, include <signal.h>.
Diffstat (limited to 'gdb/event-top.h')
-rw-r--r--gdb/event-top.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/event-top.h b/gdb/event-top.h
index 36b20981789..b719549bd71 100644
--- a/gdb/event-top.h
+++ b/gdb/event-top.h
@@ -1,5 +1,5 @@
/* Definitions used by GDB event-top.c.
- Copyright 1999 Free Software Foundation, Inc.
+ Copyright 1999, 2001 Free Software Foundation, Inc.
Written by Elena Zannoni <ezannoni@cygnus.com> of Cygnus Solutions.
This file is part of GDB.
@@ -78,6 +78,7 @@ extern void set_async_prompt (char *args, int from_tty, struct cmd_list_element
/* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
#ifndef STOP_SIGNAL
+#include <signal.h>
#ifdef SIGTSTP
#define STOP_SIGNAL SIGTSTP
extern void handle_stop_sig (int sig);