shithub: scc

ref: e930483aa34db9d2c88395e5505c452b032ceebc
dir: /lib/c/feof.c/

View raw version

#include <stdio.h>
#undef feof

int
feof(FILE *fp)
{
	return fp->flags & _IOEOF;
}