diff options
author | John Gilmore <gnu@cygnus> | 1992-02-21 01:34:46 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1992-02-21 01:34:46 +0000 |
commit | e17960fb42997fc740d0f74544be9713a0209878 (patch) | |
tree | 1ed6bd38b5ae03e99972687308c962e92e4b34d0 /gdb/remote-hms.c | |
parent | 7ed0f002ede4baa5bba71173818d14b818184410 (diff) | |
download | gdb-e17960fb42997fc740d0f74544be9713a0209878.zip gdb-e17960fb42997fc740d0f74544be9713a0209878.tar.gz gdb-e17960fb42997fc740d0f74544be9713a0209878.tar.bz2 |
* core.c, eval.c, exec.c, inftarg.c, remote-adapt.c, remote-eb.c,
remote-hms.c, remote-mm.c, remote-nindy.c, remote-vx.c, remote.c,
target.c, target.h, valarith.c, valops.c, value.h, xcoffexec.c:
Remove to_call_function and target_call_function, since it
always calls the same thing (call_function_by_hand).
Diffstat (limited to 'gdb/remote-hms.c')
-rw-r--r-- | gdb/remote-hms.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/gdb/remote-hms.c b/gdb/remote-hms.c index 48df7a7..4e4e349 100644 --- a/gdb/remote-hms.c +++ b/gdb/remote-hms.c @@ -1,9 +1,7 @@ /* Remote debugging interface for Hitachi HMS Monitor Version 1.0 - Copyright 1992 Free Software Foundation, Inc. - - Contributed by Steve Chamberlain sac@cygnus.com - + Contributed by Cygnus Support. Written by Steve Chamberlain + (sac@cygnus.com). This file is part of GDB. @@ -21,14 +19,12 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ - - #include <stdio.h> -#include <string.h> #include "defs.h" #include "inferior.h" #include "wait.h" #include "value.h" +#include <string.h> #include <ctype.h> #include <fcntl.h> #include <signal.h> @@ -41,9 +37,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* External data declarations */ extern int stop_soon_quietly; /* for wait_for_inferior */ -/* External function declarations */ -extern struct value *call_function_by_hand(); - /* Forward data declarations */ extern struct target_ops hms_ops; /* Forward declaration */ @@ -1604,7 +1597,6 @@ by a serial line.", 0, 0, 0, 0, 0, /* Terminal handling */ hms_kill, /* FIXME, kill */ hms_load, - call_function_by_hand, 0, /* lookup_symbol */ hms_create_inferior, /* create_inferior */ hms_mourn, /* mourn_inferior FIXME */ |