shithub: scc

ref: 04eaa4bdf25f5d142a47eed13dff69a5cf4497e1
dir: /src/libc/stdio/feof.c/

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

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