diff options
Diffstat (limited to 'src/stdio/fwrite.c')
-rw-r--r-- | src/stdio/fwrite.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/fwrite.c b/src/stdio/fwrite.c index 7a567b2c..9ee88ef7 100644 --- a/src/stdio/fwrite.c +++ b/src/stdio/fwrite.c @@ -36,3 +36,11 @@ size_t fwrite(const void *restrict src, size_t size, size_t nmemb, FILE *restric } weak_alias(fwrite, fwrite_unlocked); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |