diff options
Diffstat (limited to 'src/stdio/feof.c')
-rw-r--r-- | src/stdio/feof.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/feof.c b/src/stdio/feof.c index 56da6b91..5adb3dfb 100644 --- a/src/stdio/feof.c +++ b/src/stdio/feof.c @@ -12,3 +12,11 @@ int feof(FILE *f) weak_alias(feof, feof_unlocked); weak_alias(feof, _IO_feof_unlocked); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |