aboutsummaryrefslogtreecommitdiff
path: root/sim/sh/run.c
diff options
context:
space:
mode:
Diffstat (limited to 'sim/sh/run.c')
-rw-r--r--sim/sh/run.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sim/sh/run.c b/sim/sh/run.c
index f039851..587d3af 100644
--- a/sim/sh/run.c
+++ b/sim/sh/run.c
@@ -165,3 +165,11 @@ printf_filtered (va_alist)
vfprintf (stdout, format, args);
va_end (args);
}
+
+int
+sim_callback_write_stdout (arg, len)
+ char *arg;
+ int len;
+{
+ return write (1, arg, len);
+}