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/remote-hms.c | |
parent | 6d631e9666c66111eadeebf8a41348817e73a590 (diff) | |
download | gdb-feb494d76a34e3ccf614ceccd68d6ce7b2f1cbd8.tar.gz |
Protoization.gdb-post-protoization-2000-07-29
Diffstat (limited to 'gdb/remote-hms.c')
-rw-r--r-- | gdb/remote-hms.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/gdb/remote-hms.c b/gdb/remote-hms.c index 1bf592087fe..834f5963dc0 100644 --- a/gdb/remote-hms.c +++ b/gdb/remote-hms.c @@ -28,11 +28,7 @@ static void hms_open (char *args, int from_tty); static void -hms_supply_register (regname, regnamelen, val, vallen) - char *regname; - int regnamelen; - char *val; - int vallen; +hms_supply_register (char *regname, int regnamelen, char *val, int vallen) { int regno; @@ -135,9 +131,7 @@ init_hms_cmds (void) } /* init_hms-cmds */ static void -hms_open (args, from_tty) - char *args; - int from_tty; +hms_open (char *args, int from_tty) { monitor_open (args, &hms_cmds, from_tty); } @@ -145,7 +139,7 @@ hms_open (args, from_tty) int write_dos_tick_delay; void -_initialize_remote_hms () +_initialize_remote_hms (void) { init_hms_cmds (); init_monitor_ops (&hms_ops); |