diff options
Diffstat (limited to 'src/stdio/fwprintf.c')
-rw-r--r-- | src/stdio/fwprintf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/fwprintf.c b/src/stdio/fwprintf.c index 9ce4f010..fa1879da 100644 --- a/src/stdio/fwprintf.c +++ b/src/stdio/fwprintf.c @@ -11,3 +11,11 @@ int fwprintf(FILE *restrict f, const wchar_t *restrict fmt, ...) va_end(ap); return ret; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |