shithub: scc

ref: ba987573a5ba468d3f1e7237feaf092fc47a444a
dir: /src/libc/stdio/feof.c/

View raw version
#include <stdio.h>

#undef feof

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