shithub: scc

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

View raw version
#include <stdio.h>

#undef feof

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