diff options
author | Fernando Nasser <fnasser@redhat.com> | 2001-04-06 12:09:30 +0000 |
---|---|---|
committer | Fernando Nasser <fnasser@redhat.com> | 2001-04-06 12:09:30 +0000 |
commit | a250df2e356bc3f0a4607b814c6fc0e6aae85a0a (patch) | |
tree | a089be3c179a7abf11089e9036c714ba5594853a /gdb/inferior.h | |
parent | c241941156e8b74c94827c4b190061c815d301bf (diff) | |
download | gdb-a250df2e356bc3f0a4607b814c6fc0e6aae85a0a.zip gdb-a250df2e356bc3f0a4607b814c6fc0e6aae85a0a.tar.gz gdb-a250df2e356bc3f0a4607b814c6fc0e6aae85a0a.tar.bz2 |
2001-04-06 Fernando Nasser <fnasser@redhat.com>
From David Deephanphongs <deephan@telocity.com>
* inferior.h: Fix declarations of get_inferior_args and
set_inferior_args, which were missing the trailing 's'.
Diffstat (limited to 'gdb/inferior.h')
-rw-r--r-- | gdb/inferior.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/inferior.h b/gdb/inferior.h index 5db89ee..d944deb 100644 --- a/gdb/inferior.h +++ b/gdb/inferior.h @@ -267,9 +267,9 @@ extern void tty_command (char *, int); extern void attach_command (char *, int); -extern char *get_inferior_arg (void); +extern char *get_inferior_args (void); -extern char *set_inferior_arg (char *); +extern char *set_inferior_args (char *); /* Last signal that the inferior received (why it stopped). */ |