shithub: scc

ref: 22e63b76976fd232a2e40e30845d35eca6325b02
dir: /lib/c/feof.c/

View raw version

#include <stdio.h>
#undef feof

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