mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
161 B
11 lines
161 B
#include "stdio_impl.h"
|
|
|
|
#undef feof
|
|
|
|
int feof(FILE *f)
|
|
{
|
|
return !!(f->flags & F_EOF);
|
|
}
|
|
|
|
weak_alias(feof, feof_unlocked);
|
|
weak_alias(feof, _IO_feof_unlocked);
|
|
|