blob: 5d7f4b02332b8825f01dd6745ed08bf4ffa66602 [file] [log] [blame]
#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);