summaryrefslogtreecommitdiff
path: root/gdb/stack.c
diff options
context:
space:
mode:
authorElena Zannoni <ezannoni@kwikemart.cygnus.com>2002-10-03 02:34:07 +0000
committerElena Zannoni <ezannoni@kwikemart.cygnus.com>2002-10-03 02:34:07 +0000
commit7de3fad7acbba23158b6eab17b96ffa877cfc159 (patch)
tree1a2489e2a728e873662ab52c4a9bdcaac665f9c4 /gdb/stack.c
parent5b2919399c60ba4bedd039ace078ea1d5e4bf703 (diff)
downloadgdb-7de3fad7acbba23158b6eab17b96ffa877cfc159.tar.gz
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.c10
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;