shithub: scc

ref: 83313d4505acea160478ef7bf2c60645e3cec526
dir: /src/libc/stdio/feof.c/

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

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