shithub: scc

ref: 1de991f3053e77706b920dc579c4affffd2d68f0
dir: /src/libc/stdio/feof.c/

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

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