1 #include "stdio_impl.h"
2 
rewind(FILE * f)3 void rewind(FILE* f) {
4     FLOCK(f);
5     __fseeko_unlocked(f, 0, SEEK_SET);
6     f->flags &= ~F_ERR;
7     FUNLOCK(f);
8 }
9