diff options
Diffstat (limited to 'src/stdio/putwchar.c')
-rw-r--r-- | src/stdio/putwchar.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/putwchar.c b/src/stdio/putwchar.c index b249c4ac..301c062e 100644 --- a/src/stdio/putwchar.c +++ b/src/stdio/putwchar.c @@ -7,3 +7,11 @@ wint_t putwchar(wchar_t c) } weak_alias(putwchar, putwchar_unlocked); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |