musl/src/stdio/rewind.c

10 lines
131 B
C
Raw Normal View History

#include "stdio_impl.h"
2011-02-12 00:22:29 -05:00
void rewind(FILE *f)
{
FLOCK(f);
__fseeko_unlocked(f, 0, SEEK_SET);
f->flags &= ~F_ERR;
FUNLOCK(f);
2011-02-12 00:22:29 -05:00
}