aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote.c
diff options
context:
space:
mode:
authorStu Grossman <grossman@cygnus>1992-06-25 23:02:57 +0000
committerStu Grossman <grossman@cygnus>1992-06-25 23:02:57 +0000
commitbf18ac80076cb6bff297e75a92995653c3effa5b (patch)
treee7c7dad4a8af0388b68a3b8ee76a80a313c1f1fd /gdb/remote.c
parentd98a0a44629e41413cbb243954ab7876ab3919d0 (diff)
downloadfsf-binutils-gdb-bf18ac80076cb6bff297e75a92995653c3effa5b.zip
fsf-binutils-gdb-bf18ac80076cb6bff297e75a92995653c3effa5b.tar.gz
fsf-binutils-gdb-bf18ac80076cb6bff297e75a92995653c3effa5b.tar.bz2
* dbxread.c (dbx_symfile_init): Move more code under hp9000s800
conditional. * hppabsd-core.c: Don't include "param.h", include <sys/param.h> instead. * remote.c (remote_wait): Cast signal to void * to avoid warning from busted HP compiler.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r--gdb/remote.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote.c b/gdb/remote.c
index f38a02e..f8372db 100644
--- a/gdb/remote.c
+++ b/gdb/remote.c
@@ -420,7 +420,7 @@ remote_wait (status)
WSETEXIT ((*status), 0);
- ofunc = signal (SIGINT, remote_interrupt);
+ ofunc = (void (*)) signal (SIGINT, remote_interrupt);
getpkt ((char *) buf);
signal (SIGINT, ofunc);