From 10689f25cd4c3fc7bae2211eb7cc6324326b9519 Mon Sep 17 00:00:00 2001 From: Kevin Buettner Date: Tue, 31 Oct 2000 05:49:55 +0000 Subject: [PATCH] Protoization. --- gdb/ChangeLog | 6 ++++++ gdb/top.c | 24 +++++++++--------------- gdb/ui-out.c | 5 +---- 3 files changed, 16 insertions(+), 19 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3109ba83c8..4cbd596526 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2000-10-30 Kevin Buettner + + * top.c (simplified_command_loop, add_info, add_com, + help_command): Protoize. + * ui-out.c (gdb_query): Protoize. + 2000-10-30 Kevin Buettner Changes based on analysis from Peter Schauer: diff --git a/gdb/top.c b/gdb/top.c index 813a5ba4ae..c921407b6e 100644 --- a/gdb/top.c +++ b/gdb/top.c @@ -1643,9 +1643,8 @@ command_loop (void) such things as displaying time and space usage. If the user asks for those, they won't work. */ void -simplified_command_loop (read_input_func, execute_command_func) - char *(*read_input_func) (char *); - void (*execute_command_func) (char *, int); +simplified_command_loop (char *(*read_input_func) (char *), + void (*execute_command_func) (char *, int)) { struct cleanup *old_chain; char *command; @@ -2871,10 +2870,7 @@ make_cleanup_free_command_lines (struct command_line **arg) /* Add an element to the list of info subcommands. */ struct cmd_list_element * -add_info (name, fun, doc) - char *name; - void (*fun) (char *, int); - char *doc; +add_info (char *name, void (*fun) (char *, int), char *doc) { return add_cmd (name, no_class, fun, doc, &infolist); } @@ -2935,11 +2931,8 @@ show_command (char *arg, int from_tty) /* Add an element to the list of commands. */ struct cmd_list_element * -add_com (name, class, fun, doc) - char *name; - enum command_class class; - void (*fun) (char *, int); - char *doc; +add_com (char *name, enum command_class class, void (*fun) (char *, int), + char *doc) { return add_cmd (name, class, fun, doc, &cmdlist); } @@ -2959,11 +2952,12 @@ error_no_arg (char *why) error ("Argument required (%s).", why); } +/* Provide documentation on command or list given by COMMAND. FROM_TTY + is ignored. */ + /* ARGSUSED */ static void -help_command (command, from_tty) - char *command; - int from_tty; /* Ignored */ +help_command (char *command, int from_tty) { help_cmd (command, gdb_stdout); } diff --git a/gdb/ui-out.c b/gdb/ui-out.c index cf56a0d2b6..a95831da28 100644 --- a/gdb/ui-out.c +++ b/gdb/ui-out.c @@ -542,10 +542,7 @@ gdb_error (ui_out * uiout, int severity, char *format,...) } void -gdb_query (uiout, qflags, qprompt) - struct ui_out *uiout; - int flags; - char *qprompt; +gdb_query (struct ui_out *uiout, int qflags, char *qprompt) { } #endif -- 2.34.1