diff options
Diffstat (limited to 'src/stdio/fputwc.c')
-rw-r--r-- | src/stdio/fputwc.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/fputwc.c b/src/stdio/fputwc.c index 789fe9c9..becd3b46 100644 --- a/src/stdio/fputwc.c +++ b/src/stdio/fputwc.c @@ -38,3 +38,11 @@ wint_t fputwc(wchar_t c, FILE *f) weak_alias(__fputwc_unlocked, fputwc_unlocked); weak_alias(__fputwc_unlocked, putwc_unlocked); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |