diff options
Diffstat (limited to 'shared/common/loud.c')
-rw-r--r-- | shared/common/loud.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/shared/common/loud.c b/shared/common/loud.c index d87d3c0..e1e921d 100644 --- a/shared/common/loud.c +++ b/shared/common/loud.c @@ -366,6 +366,14 @@ void loudbug_startpost(char *fmt, ...) #endif } +void loudbug_stringpost(char *s) +{ + fputs(s, stderr); +#ifdef MSW + fflush(stderr); +#endif +} + void loudbug_endpost(void) { fputs("\n", stderr); |