musl/src/stdio/rewind.c
2011-02-12 00:22:29 -05:00

7 lines
69 B
C

#include <stdio.h>
void rewind(FILE *f)
{
fseek(f, 0, SEEK_SET);
}