diff options
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/cli/cli-decode.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 60b7588..d08ffd8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2013-02-14 Yao Qi <yao@codesourcery.com> + + * cli/cli-decode.c (help_cmd): Remove the declaration of + "cmdlist". + (help_all): Likewise. + 2013-02-13 Pedro Alves <palves@redhat.com> * amd64-linux-nat.c (update_debug_registers_callback): diff --git a/gdb/cli/cli-decode.c b/gdb/cli/cli-decode.c index 08558bb..49ccef3 100644 --- a/gdb/cli/cli-decode.c +++ b/gdb/cli/cli-decode.c @@ -917,7 +917,6 @@ void help_cmd (char *command, struct ui_file *stream) { struct cmd_list_element *c; - extern struct cmd_list_element *cmdlist; if (!command) { @@ -1049,7 +1048,6 @@ static void help_all (struct ui_file *stream) { struct cmd_list_element *c; - extern struct cmd_list_element *cmdlist; int seen_unclassified = 0; for (c = cmdlist; c; c = c->next) |