From 507f3c78fb4a1235b731350d60f1bf0ce94b4175 Mon Sep 17 00:00:00 2001 From: Kevin Buettner Date: Sun, 4 Jun 2000 00:41:10 +0000 Subject: Eliminate PARAMS from function pointer declarations. --- gdb/monitor.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'gdb/monitor.h') diff --git a/gdb/monitor.h b/gdb/monitor.h index ba44133d47..23fad577e4 100644 --- a/gdb/monitor.h +++ b/gdb/monitor.h @@ -95,16 +95,15 @@ struct monitor_ops GDB with the value of a register. */ char *dump_registers; /* Command to dump all regs at once */ char *register_pattern; /* Pattern that picks out register from reg dump */ - void (*supply_register) PARAMS ((char *name, int namelen, - char *val, int vallen)); + 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 */ - int (*wait_filter) PARAMS ((char *buf, /* Maybe contains registers */ - int bufmax, - int *response_length, - struct target_waitstatus * status)); + int (*wait_filter) (char *buf, /* Maybe contains registers */ + int bufmax, + int *response_length, + struct target_waitstatus * status); char *load; /* load command */ char *loadresp; /* Response to load command */ char *prompt; /* monitor command prompt */ -- cgit v1.2.1