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