diff options
Diffstat (limited to 'gdb/remote-sim.c')
-rw-r--r-- | gdb/remote-sim.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c index db2ba63..930e494 100644 --- a/gdb/remote-sim.c +++ b/gdb/remote-sim.c @@ -270,8 +270,9 @@ static void #ifdef ANSI_PROTOTYPES gdb_os_vprintf_filtered (host_callback *p, const char *format, void *ap) #else -gdb_os_vprintf_filtered (p, ap) +gdb_os_vprintf_filtered (p, format, ap) host_callback *p; + char *format; void *ap; #endif { @@ -285,8 +286,9 @@ static void #ifdef ANSI_PROTOTYPES gdb_os_evprintf_filtered (host_callback *p, const char *format, void *ap) #else -gdb_os_vprintf_filtered (p, ap) +gdb_os_evprintf_filtered (p, format, ap) host_callback *p; + char *format; void *ap; #endif { |