shithub: scc

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

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

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