shithub: scc

ref: 893983575da0f76075ffd8f3d60cb23d6c3475e6
dir: /src/libc/stdio/feof.c/

View raw version
#include <stdio.h>

#undef feof

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