blob: f2b739b5c89507291c101ed6e237d8ad719666c7 [file] [log] [blame]
#include "stdio_impl.h"
#undef feof
int feof(FILE *f)
{
return !!(f->flags & F_EOF);
}
weak_alias(feof, feof_unlocked);