diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2002-10-03 02:34:07 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2002-10-03 02:34:07 +0000 |
commit | a58dd3735c499b8e076e7e283b87361732119191 (patch) | |
tree | f6e1d0a2fbde6170e3bff726b13a1fb0afb85df6 /gdb/stack.c | |
parent | 2002-10-02 Elena Zannoni <ezannoni@redhat.com> (diff) | |
download | binutils-gdb-a58dd3735c499b8e076e7e283b87361732119191.tar.gz binutils-gdb-a58dd3735c499b8e076e7e283b87361732119191.tar.bz2 binutils-gdb-a58dd3735c499b8e076e7e283b87361732119191.zip |
2002-10-02 Elena Zannoni <ezannoni@redhat.com>
* infcmd.c (interrupt_target_command_wrapper): Delete.
(interrupt_target_command): Make non static.
(nofp_registers_info): Make static.
* stack.c (return_command_wrapper): Delete.
(return_command): Make non static.
Diffstat (limited to 'gdb/stack.c')
-rw-r--r-- | gdb/stack.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gdb/stack.c b/gdb/stack.c index 83fd26e476b..b1cd9c7edde 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -50,9 +50,9 @@ void (*selected_frame_level_changed_hook) (int); void _initialize_stack (void); -/* Prototypes for local functions. */ +void return_command (char *, int); -static void return_command (char *, int); +/* Prototypes for local functions. */ static void down_command (char *, int); @@ -1755,12 +1755,6 @@ down_command (char *count_exp, int from_tty) } void -return_command_wrapper (char *retval_exp, int from_tty) -{ - return_command (retval_exp, from_tty); -} - -static void return_command (char *retval_exp, int from_tty) { struct symbol *thisfun; |