shithub: scc

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

View raw version

#include <stdio.h>
#undef feof

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