shithub: scc

ref: 36747647964a2893277d27848ee8a1d577455cf8
dir: /src/libc/stdio/feof.c/

View raw version
#include <stdio.h>
#undef feof

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