musl/src/stdio/rewind.c

7 lines
69 B
C
Raw Normal View History

2011-02-12 05:22:29 +00:00
#include <stdio.h>
void rewind(FILE *f)
{
fseek(f, 0, SEEK_SET);
}