musl-tcc/src/stdio/rewind.c
2022-03-20 16:48:53 +08:00

10 lines
131 B
C

#include "stdio_impl.h"
void rewind(FILE *f)
{
FLOCK(f);
__fseeko_unlocked(f, 0, SEEK_SET);
f->flags &= ~F_ERR;
FUNLOCK(f);
}