shithub: scc

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

View raw version

#include <stdio.h>
#undef feof

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