diff options
Diffstat (limited to 'src/stdio/fgetpos.c')
-rw-r--r-- | src/stdio/fgetpos.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/fgetpos.c b/src/stdio/fgetpos.c index 392f7323..345efb29 100644 --- a/src/stdio/fgetpos.c +++ b/src/stdio/fgetpos.c @@ -7,3 +7,11 @@ int fgetpos(FILE *restrict f, fpos_t *restrict pos) *(long long *)pos = off; return 0; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |