shithub: scc

ref: 7328d784f2161757a4413de58e1cb433d0bf3bbe
dir: /src/libc/stdio/feof.c/

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

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