summaryrefslogtreecommitdiff
path: root/gdb/top.h
diff options
context:
space:
mode:
authorJason Molenda <jsm@bugshack.cygnus.com>1999-12-14 01:06:04 +0000
committerJason Molenda <jsm@bugshack.cygnus.com>1999-12-14 01:06:04 +0000
commited20a4786f2177ddb10716ce386b41eae69696e4 (patch)
treeb284bdfce8bb4cf2d417bcf57da78f37f66bc1c8 /gdb/top.h
parent64502d627774c5d5b399a9725f1020b435e80b54 (diff)
downloadgdb-ed20a4786f2177ddb10716ce386b41eae69696e4.tar.gz
import gdb-1999-12-13 snapshot
Diffstat (limited to 'gdb/top.h')
-rw-r--r--gdb/top.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/gdb/top.h b/gdb/top.h
index 9f6398f7fca..36bf52b509a 100644
--- a/gdb/top.h
+++ b/gdb/top.h
@@ -19,8 +19,6 @@
Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-#include <setjmp.h>
-
/* From top.c. */
extern char *line;
extern int linesize;
@@ -30,21 +28,6 @@ extern int inhibit_gdbinit;
extern int epoch_interface;
extern char gdbinit[];
-/* Generally one should use catch_errors rather than manipulating these
- directly. The exception is main(). */
-#if defined(HAVE_SIGSETJMP)
-#define SIGJMP_BUF sigjmp_buf
-#define SIGSETJMP(buf) sigsetjmp(buf, 1)
-#define SIGLONGJMP(buf,val) siglongjmp(buf,val)
-#else
-#define SIGJMP_BUF jmp_buf
-#define SIGSETJMP(buf) setjmp(buf)
-#define SIGLONGJMP(buf,val) longjmp(buf,val)
-#endif
-
-extern SIGJMP_BUF error_return;
-extern SIGJMP_BUF quit_return;
-
extern void print_gdb_version PARAMS ((GDB_FILE *));
extern void source_command PARAMS ((char *, int));