diff options
author | Stu Grossman <grossman@cygnus> | 1992-06-25 23:02:57 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1992-06-25 23:02:57 +0000 |
commit | bf18ac80076cb6bff297e75a92995653c3effa5b (patch) | |
tree | e7c7dad4a8af0388b68a3b8ee76a80a313c1f1fd /gdb/remote.c | |
parent | d98a0a44629e41413cbb243954ab7876ab3919d0 (diff) | |
download | gdb-bf18ac80076cb6bff297e75a92995653c3effa5b.zip gdb-bf18ac80076cb6bff297e75a92995653c3effa5b.tar.gz 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.c | 2 |
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); |