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