diff options
Diffstat (limited to 'gdb/abug-rom.c')
-rw-r--r-- | gdb/abug-rom.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/gdb/abug-rom.c b/gdb/abug-rom.c index 0ade234a179..68f48a2304f 100644 --- a/gdb/abug-rom.c +++ b/gdb/abug-rom.c @@ -31,11 +31,7 @@ static void abug_open (char *args, int from_tty); static void -abug_supply_register (regname, regnamelen, val, vallen) - char *regname; - int regnamelen; - char *val; - int vallen; +abug_supply_register (char *regname, int regnamelen, char *val, int vallen) { int regno; @@ -148,15 +144,13 @@ init_abug_cmds (void) }; static void -abug_open (args, from_tty) - char *args; - int from_tty; +abug_open (char *args, int from_tty) { monitor_open (args, &abug_cmds, from_tty); } void -_initialize_abug_rom () +_initialize_abug_rom (void) { init_abug_cmds (); init_monitor_ops (&abug_ops); |