Files
musl/src/stdio/feof.c
2011-02-12 00:22:29 -05:00

11 lines
124 B
C

#include "stdio_impl.h"
#undef feof
int feof(FILE *f)
{
return !!(f->flags & F_EOF);
}
weak_alias(feof, feof_unlocked);