use xprintf instead of printf
This commit is contained in:
parent
72db056f1e
commit
6eec3629e9
|
@ -440,8 +440,8 @@ pic_printf(pic_state *pic, const char *fmt, ...)
|
||||||
|
|
||||||
va_end(ap);
|
va_end(ap);
|
||||||
|
|
||||||
printf("%s", pic_str_cstr(str));
|
xprintf("%s", pic_str_cstr(str));
|
||||||
fflush(stdout);
|
xfflush(xstdout);
|
||||||
}
|
}
|
||||||
|
|
||||||
static pic_value
|
static pic_value
|
||||||
|
|
Loading…
Reference in New Issue