diff options
author | John Gilmore <gnu@cygnus> | 1992-04-02 10:35:19 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1992-04-02 10:35:19 +0000 |
commit | ac88ca205c0d1cb48943550d41a6400b4e556271 (patch) | |
tree | 0b23ecb6a51897374da059120d8bc0084c184eeb /gdb/command.c | |
parent | adf5061ceb7101a850eca4ec11aa0882c1847de0 (diff) | |
download | gdb-ac88ca205c0d1cb48943550d41a6400b4e556271.zip gdb-ac88ca205c0d1cb48943550d41a6400b4e556271.tar.gz gdb-ac88ca205c0d1cb48943550d41a6400b4e556271.tar.bz2 |
Lint.
* symfile.c (add_symbol_file_command): Initialize mapped/readnow.
Diffstat (limited to 'gdb/command.c')
-rw-r--r-- | gdb/command.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/command.c b/gdb/command.c index f5e0cec..3d91010 100644 --- a/gdb/command.c +++ b/gdb/command.c @@ -45,6 +45,9 @@ parse_binary_operation PARAMS ((char *)); static void print_doc_line PARAMS ((FILE *, char *)); +extern void +not_just_help_class_command PARAMS ((char *, int)); + /* Add element named NAME to command list *LIST. FUN should be the function to execute the command; it will get a character string as argument, with leading @@ -186,10 +189,9 @@ add_abbrev_prefix_cmd (name, class, fun, doc, prefixlist, prefixname, /* ARGSUSED */ void -not_just_help_class_command (args, from_tty, c) +not_just_help_class_command (args, from_tty) char *args; int from_tty; - struct cmd_list_element *c; { } |