diff options
Diffstat (limited to 'src/stdio/fseek.c')
-rw-r--r-- | src/stdio/fseek.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/fseek.c b/src/stdio/fseek.c index c7425802..c3bfc35e 100644 --- a/src/stdio/fseek.c +++ b/src/stdio/fseek.c @@ -46,3 +46,11 @@ int fseek(FILE *f, long off, int whence) } weak_alias(__fseeko, fseeko); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |