shithub: scc

ref: 39d95c720cdc1e9af291f81689208fcf599a023d
dir: /src/libc/stdio/feof.c/

View raw version
#include <stdio.h>

#undef feof

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