shithub: scc

ref: 7ae4cdf7ae71be76936061c036d07e7e34545ec4
dir: /src/libc/stdio/feof.c/

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

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