summaryrefslogtreecommitdiff
path: root/gdb/monitor.h
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2000-06-10 01:32:12 +0000
committerKevin Buettner <kevinb@redhat.com>2000-06-10 01:32:12 +0000
commit8ceec764664897c4ac9b9b37a15b5d99255031ac (patch)
tree4ee35c3ad652aa62d62272fc359da2cc6bbeb0b1 /gdb/monitor.h
parent5f155218f53d155329c8334ed4dd3ead8aa1427e (diff)
downloadgdb-8ceec764664897c4ac9b9b37a15b5d99255031ac.tar.gz
Eliminate PARAMS.
Diffstat (limited to 'gdb/monitor.h')
-rw-r--r--gdb/monitor.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/monitor.h b/gdb/monitor.h
index 23fad577e4f..712a4c58e70 100644
--- a/gdb/monitor.h
+++ b/gdb/monitor.h
@@ -96,10 +96,10 @@ struct monitor_ops
char *dump_registers; /* Command to dump all regs at once */
char *register_pattern; /* Pattern that picks out register from reg dump */
void (*supply_register) (char *name, int namelen, char *val, int vallen);
- void (*load_routine) PARAMS ((serial_t desc, char *file,
- int hashmark)); /* Download routine */
- int (*dumpregs) PARAMS ((void)); /* routine to dump all registers */
- int (*continue_hook) PARAMS ((void)); /* Emit the continue command */
+ void (*load_routine) (serial_t desc, char *file,
+ int hashmark); /* Download routine */
+ int (*dumpregs) (void); /* routine to dump all registers */
+ int (*continue_hook) (void); /* Emit the continue command */
int (*wait_filter) (char *buf, /* Maybe contains registers */
int bufmax,
int *response_length,