shithub: scc

ref: 95d704d06828e99541170b8f5bfc97240d31b79d
dir: /src/libc/stdio/feof.c/

View raw version
#include <stdio.h>

#undef feof

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