shithub: scc

ref: 3e8757f4125a99765fdd625b6a31d2236a93c4cf
dir: /src/libc/stdio/feof.c/

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

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