shithub: scc

ref: 78f50052f168c1f93590568724acf30195fde4ef
dir: /src/libc/stdio/feof.c/

View raw version
#include <stdio.h>

#undef feof

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