diff options
Diffstat (limited to 'src/stdio/fputs.c')
-rw-r--r-- | src/stdio/fputs.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/fputs.c b/src/stdio/fputs.c index 1cf344f2..9632dfa5 100644 --- a/src/stdio/fputs.c +++ b/src/stdio/fputs.c @@ -8,3 +8,11 @@ int fputs(const char *restrict s, FILE *restrict f) } weak_alias(fputs, fputs_unlocked); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |