diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-06-10 01:32:12 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-06-10 01:32:12 +0000 |
commit | dee8b1a1c52bb43245e6b0ac2958ea6de4f6ba29 (patch) | |
tree | f9b5959bae0444386a18fb18f492221b0b8e3aad /gdb/monitor.h | |
parent | 4acafb8638134c5e22a6149cc9f5f019b23968f2 (diff) | |
download | gdb-dee8b1a1c52bb43245e6b0ac2958ea6de4f6ba29.zip gdb-dee8b1a1c52bb43245e6b0ac2958ea6de4f6ba29.tar.gz gdb-dee8b1a1c52bb43245e6b0ac2958ea6de4f6ba29.tar.bz2 |
Eliminate PARAMS.
Diffstat (limited to 'gdb/monitor.h')
-rw-r--r-- | gdb/monitor.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/monitor.h b/gdb/monitor.h index 23fad57..712a4c5 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, |