diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-06-04 00:41:10 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-06-04 00:41:10 +0000 |
commit | 507f3c78fb4a1235b731350d60f1bf0ce94b4175 (patch) | |
tree | 6ea9ac74469d05832c141119201193804a03f09c /gdb/remote.c | |
parent | 450005e7c2e864ed0b7ab8c85947716cc707b98a (diff) | |
download | gdb-507f3c78fb4a1235b731350d60f1bf0ce94b4175.zip gdb-507f3c78fb4a1235b731350d60f1bf0ce94b4175.tar.gz gdb-507f3c78fb4a1235b731350d60f1bf0ce94b4175.tar.bz2 |
Eliminate PARAMS from function pointer declarations.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index c40f7af..fbe959a 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -603,9 +603,8 @@ add_packet_config_cmd (config, name, title, set_func, show_func, struct packet_config *config; char *name; char *title; - void (*set_func) PARAMS ((char *args, int from_tty, - struct cmd_list_element * c)); - void (*show_func) PARAMS ((char *name, int from_tty)); + void (*set_func) (char *args, int from_tty, struct cmd_list_element * c); + void (*show_func) (char *name, int from_tty); struct cmd_list_element **setlist; struct cmd_list_element **showlist; { @@ -731,8 +730,8 @@ PTR sigint_remote_token; /* These are pointers to hook functions that may be set in order to modify resume/wait behavior for a particular architecture. */ -void (*target_resume_hook) PARAMS ((void)); -void (*target_wait_loop_hook) PARAMS ((void)); +void (*target_resume_hook) (void); +void (*target_wait_loop_hook) (void); @@ -2445,7 +2444,7 @@ cleanup_sigint_signal_handler (void *dummy) /* Send ^C to target to halt it. Target will respond, and send us a packet. */ -static void (*ofunc) PARAMS ((int)); +static void (*ofunc) (int); /* The command line interface's stop routine. This function is installed as a signal handler for SIGINT. The first time a user requests a |