xref: /aosp_15_r20/external/musl/src/stdio/rewind.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include "stdio_impl.h"
2 
rewind(FILE * f)3 void rewind(FILE *f)
4 {
5 	FLOCK(f);
6 	__fseeko_unlocked(f, 0, SEEK_SET);
7 	f->flags &= ~F_ERR;
8 	FUNLOCK(f);
9 }
10