perf tools: Fix build error on read only source.
[sfrench/cifs-2.6.git] / arch / powerpc / xmon / nonstdio.c
index 78765833f4c0459fa66022596824b2df951a607d..bfac84fbe7806693797decdd8db0deaea98bf097 100644 (file)
@@ -132,3 +132,8 @@ void xmon_printf(const char *format, ...)
        va_end(args);
        xmon_write(xmon_outbuf, n);
 }
+
+void xmon_puts(const char *str)
+{
+       xmon_write(str, strlen(str));
+}