Sign in
mojo
/
mojo-tools
/
910c5448926fa16d8a0a25eaa92253cb3b505a0c
/
.
/
fusl
/
src
/
stdio
/
rewind.c
blob: bb6d9a72f6af7666f4fedc4f8dca87e42f4ee941 [
file
]
#include
"stdio_impl.h"
void
rewind
(
FILE
*
f
)
{
FLOCK
(
f
);
__fseeko_unlocked
(
f
,
0
,
SEEK_SET
);
f
->
flags
&=
~
F_ERR
;
FUNLOCK
(
f
);
}