diff options
author | Jason Molenda <jmolenda@apple.com> | 1999-05-25 18:09:09 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1999-05-25 18:09:09 +0000 |
commit | 392a587b0562bfd8561bc15ad2625a4f49f461f0 (patch) | |
tree | 933e0970b7845c901c7ea3e128fa9cb0dcf9fe14 /gdb/command.c | |
parent | 751d21b5b946a4a451552fbac692b14abea3d816 (diff) | |
download | gdb-392a587b0562bfd8561bc15ad2625a4f49f461f0.zip gdb-392a587b0562bfd8561bc15ad2625a4f49f461f0.tar.gz gdb-392a587b0562bfd8561bc15ad2625a4f49f461f0.tar.bz2 |
import gdb-1999-05-25 snapshot
Diffstat (limited to 'gdb/command.c')
-rw-r--r-- | gdb/command.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/command.c b/gdb/command.c index fc758e5..0b095d9 100644 --- a/gdb/command.c +++ b/gdb/command.c @@ -51,6 +51,12 @@ static int parse_binary_operation PARAMS ((char *)); static void print_doc_line PARAMS ((GDB_FILE *, char *)); +static struct cmd_list_element *find_cmd PARAMS ((char *command, + int len, + struct cmd_list_element *clist, + int ignore_help_classes, + int *nfound)); + void _initialize_command PARAMS ((void)); /* Add element named NAME. @@ -568,6 +574,7 @@ help_cmd_list (list, class, prefix, recurse, stream) static struct cmd_list_element * find_cmd(command, len, clist, ignore_help_classes, nfound) char *command; + int len; struct cmd_list_element *clist; int ignore_help_classes; int *nfound; |