blob: 338b3fe01426c5ea726513c2a4cc5df216ceeca1 [file] [log] [blame]
#include "stdio_impl.h"
void rewind(FILE* f) {
FLOCK(f);
__fseeko_unlocked(f, 0, SEEK_SET);
f->flags &= ~F_ERR;
FUNLOCK(f);
}