diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
commit | a14ed312fd86dd2c862847230931451da2e49942 (patch) | |
tree | e7a00cec4f6ebd4b2d5dd59695c802ef6997d9da /gdb/gdbcmd.h | |
parent | 3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff) | |
download | gdb-a14ed312fd86dd2c862847230931451da2e49942.zip gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.bz2 |
PARAMS removal.
Diffstat (limited to 'gdb/gdbcmd.h')
-rw-r--r-- | gdb/gdbcmd.h | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/gdb/gdbcmd.h b/gdb/gdbcmd.h index d01e5e5..489b31c 100644 --- a/gdb/gdbcmd.h +++ b/gdb/gdbcmd.h @@ -104,24 +104,21 @@ extern struct cmd_list_element *setchecklist; extern struct cmd_list_element *showchecklist; -extern void -execute_user_command PARAMS ((struct cmd_list_element *, char *)); +extern void execute_user_command (struct cmd_list_element *, char *); -extern void -execute_command PARAMS ((char *, int)); +extern void execute_command (char *, int); -enum command_control_type -execute_control_command PARAMS ((struct command_line *)); +enum command_control_type execute_control_command (struct command_line *); extern void print_command_line (struct command_line *, unsigned int, struct ui_file *); #ifdef UI_OUT -extern void print_command_lines PARAMS ((struct ui_out *, - struct command_line *, unsigned int)); +extern void print_command_lines (struct ui_out *, + struct command_line *, unsigned int); #endif -extern char **noop_completer PARAMS ((char *, char *)); +extern char **noop_completer (char *, char *); -extern char **filename_completer PARAMS ((char *, char *)); +extern char **filename_completer (char *, char *); #endif /* !defined (GDBCMD_H) */ |