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 | fba45db2faf619e71856ee38ec63949c0ef6903e (patch) | |
tree | 107efc21d2b12f54d84b59e75251449e3d5fd096 /gdb/op50-rom.c | |
parent | 29e6d33b03a5e39540d17bc8235573b1dac13341 (diff) | |
download | gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.zip gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.tar.gz gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.tar.bz2 |
Protoization.
Diffstat (limited to 'gdb/op50-rom.c')
-rw-r--r-- | gdb/op50-rom.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gdb/op50-rom.c b/gdb/op50-rom.c index 92eccef..14eeeca 100644 --- a/gdb/op50-rom.c +++ b/gdb/op50-rom.c @@ -121,15 +121,13 @@ init_op50n_cmds (void) }; static void -op50n_open (args, from_tty) - char *args; - int from_tty; +op50n_open (char *args, int from_tty) { monitor_open (args, &op50n_cmds, from_tty); } void -_initialize_op50n () +_initialize_op50n (void) { init_op50n_cmds (); init_monitor_ops (&op50n_ops); |