diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-07-30 01:48:28 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-07-30 01:48:28 +0000 |
commit | feb494d76a34e3ccf614ceccd68d6ce7b2f1cbd8 (patch) | |
tree | cfa1634e210020e9a0afea2b92c02c6afb77049f /gdb/abug-rom.c | |
parent | 6d631e9666c66111eadeebf8a41348817e73a590 (diff) | |
download | gdb-feb494d76a34e3ccf614ceccd68d6ce7b2f1cbd8.tar.gz |
Protoization.gdb-post-protoization-2000-07-29
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); |