diff options
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 97c24c4df99..23d55412133 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); |