mirror of
https://github.com/fluencelabs/musl
synced 2025-05-06 20:42:14 +00:00
10 lines
131 B
C
10 lines
131 B
C
#include "stdio_impl.h"
|
|
|
|
void rewind(FILE *f)
|
|
{
|
|
FLOCK(f);
|
|
__fseeko_unlocked(f, 0, SEEK_SET);
|
|
f->flags &= ~F_ERR;
|
|
FUNLOCK(f);
|
|
}
|