Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
stdio
/
feof.c
blob: 56da6b917c0af7913ec18f51288eccef822d763c [
file
] [
log
] [
blame
]
#include
"stdio_impl.h"
#undef
feof
int
feof
(
FILE
*
f
)
{
FLOCK
(
f
);
int
ret
=
!!(
f
->
flags
&
F_EOF
);
FUNLOCK
(
f
);
return
ret
;
}
weak_alias
(
feof
,
feof_unlocked
);
weak_alias
(
feof
,
_IO_feof_unlocked
);