diff options
Diffstat (limited to 'src/stdio/rewind.c')
-rw-r--r-- | src/stdio/rewind.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/rewind.c b/src/stdio/rewind.c index 6f4b58b5..7e25890e 100644 --- a/src/stdio/rewind.c +++ b/src/stdio/rewind.c @@ -7,3 +7,11 @@ void rewind(FILE *f) f->flags &= ~F_ERR; FUNLOCK(f); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |