shithub: scc

ref: a91a01b018c181d150937db6f74cb1f7d0e3ebde
dir: /src/libc/stdio/feof.c/

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

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