diff options
author | Jeff Law <law@redhat.com> | 1997-11-27 06:01:08 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1997-11-27 06:01:08 +0000 |
commit | 9447f05fbb5186d40e4f33a74967c57402ba099a (patch) | |
tree | 7645b7d741f62fcc859b83ec2251bbcf0b9ddaba /gdb | |
parent | f5ddda0fc7ffd4673742285e8ffb0c29951cb810 (diff) | |
download | gdb-9447f05fbb5186d40e4f33a74967c57402ba099a.zip gdb-9447f05fbb5186d40e4f33a74967c57402ba099a.tar.gz gdb-9447f05fbb5186d40e4f33a74967c57402ba099a.tar.bz2 |
* remote-sim.c (gdbsim_cntrl_c): Lose ANSI prototype.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/remote-sim.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e3c1c6e..e992e25 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +Wed Nov 26 22:59:04 1997 Jeffrey A Law (law@cygnus.com) + + * remote-sim.c (gdbsim_cntrl_c): Lose ANSI prototype. + Wed Nov 26 15:02:43 1997 Keith Seitz <keiths@onions.cygnus.com> * gdbtk.c (gdb_loc): symtab_to_filename can return NULL diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c index 816e9cc..22952ca 100644 --- a/gdb/remote-sim.c +++ b/gdb/remote-sim.c @@ -672,7 +672,8 @@ gdb_os_poll_quit (p) just as `wait' would. */ static void -gdbsim_cntrl_c (int signo) +gdbsim_cntrl_c (signo) + int signo; { gdbsim_stop (); } |