diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-06-03 20:54:43 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-06-03 20:54:43 +0000 |
commit | a9596cd98aa07c137ed362c7d92df64213b4fa04 (patch) | |
tree | 93d2aea2e0fa868da0f9b56626e5cfe8c2341869 /gdb/inflow.c | |
parent | 74eda9eb7acc3c2bd375826f92e8ca233d5f767a (diff) | |
download | fsf-binutils-gdb-cagney_writestrings-20030508-branch.zip fsf-binutils-gdb-cagney_writestrings-20030508-branch.tar.gz fsf-binutils-gdb-cagney_writestrings-20030508-branch.tar.bz2 |
Snap const char * mess.cagney_writestrings-20030508-branch
Diffstat (limited to 'gdb/inflow.c')
-rw-r--r-- | gdb/inflow.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/inflow.c b/gdb/inflow.c index 2a41f57..d91a5f4 100644 --- a/gdb/inflow.c +++ b/gdb/inflow.c @@ -49,7 +49,7 @@ extern void _initialize_inflow (void); static void pass_signal (int); -static void kill_command (char *, int); +static void kill_command (const char *, int); static void terminal_ours_1 (int); @@ -414,14 +414,14 @@ terminal_ours_1 (int output_only) /* ARGSUSED */ void -term_info (char *arg, int from_tty) +term_info (const char *arg, int from_tty) { target_terminal_info (arg, from_tty); } /* ARGSUSED */ void -child_terminal_info (char *args, int from_tty) +child_terminal_info (const char *args, int from_tty) { if (!gdb_has_a_terminal ()) { @@ -574,7 +574,7 @@ new_tty (void) /* ARGSUSED */ static void -kill_command (char *arg, int from_tty) +kill_command (const char *arg, int from_tty) { /* FIXME: This should not really be inferior_ptid (or target_has_execution). It should be a distinct flag that indicates that a target is active, cuz |