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/ppcbug-rom.c | |
parent | 6d631e9666c66111eadeebf8a41348817e73a590 (diff) | |
download | gdb-feb494d76a34e3ccf614ceccd68d6ce7b2f1cbd8.tar.gz |
Protoization.gdb-post-protoization-2000-07-29
Diffstat (limited to 'gdb/ppcbug-rom.c')
-rw-r--r-- | gdb/ppcbug-rom.c | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/gdb/ppcbug-rom.c b/gdb/ppcbug-rom.c index af1da7301f1..16a7f9dd2b2 100644 --- a/gdb/ppcbug-rom.c +++ b/gdb/ppcbug-rom.c @@ -28,11 +28,7 @@ #include "serial.h" static void -ppcbug_supply_register (regname, regnamelen, val, vallen) - char *regname; - int regnamelen; - char *val; - int vallen; +ppcbug_supply_register (char *regname, int regnamelen, char *val, int vallen) { int regno = 0; @@ -188,23 +184,19 @@ static struct monitor_ops ppcbug_cmds0; static struct monitor_ops ppcbug_cmds1; static void -ppcbug_open0 (args, from_tty) - char *args; - int from_tty; +ppcbug_open0 (char *args, int from_tty) { monitor_open (args, &ppcbug_cmds0, from_tty); } static void -ppcbug_open1 (args, from_tty) - char *args; - int from_tty; +ppcbug_open1 (char *args, int from_tty) { monitor_open (args, &ppcbug_cmds1, from_tty); } void -_initialize_ppcbug_rom () +_initialize_ppcbug_rom (void) { init_ppc_cmds ("lo 0\r", &ppcbug_cmds0, &ppcbug_ops0); init_ppc_cmds ("lo 1\r", &ppcbug_cmds1, &ppcbug_ops1); |