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/remote-est.c | |
parent | 29e6d33b03a5e39540d17bc8235573b1dac13341 (diff) | |
download | gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.zip gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.tar.gz gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.tar.bz2 |
Protoization.
Diffstat (limited to 'gdb/remote-est.c')
-rw-r--r-- | gdb/remote-est.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/gdb/remote-est.c b/gdb/remote-est.c index 97c24c4..23d5541 100644 --- a/gdb/remote-est.c +++ b/gdb/remote-est.c @@ -31,11 +31,7 @@ static void est_open (char *args, int from_tty); static void -est_supply_register (regname, regnamelen, val, vallen) - char *regname; - int regnamelen; - char *val; - int vallen; +est_supply_register (char *regname, int regnamelen, char *val, int vallen) { int regno; @@ -150,15 +146,13 @@ init_est_cmds (void) } /* init_est_cmds */ static void -est_open (args, from_tty) - char *args; - int from_tty; +est_open (char *args, int from_tty) { monitor_open (args, &est_cmds, from_tty); } void -_initialize_est () +_initialize_est (void) { init_est_cmds (); init_monitor_ops (&est_ops); |