shithub: scc

ref: 884acf9274a44d602d54e3e339c7730a9274c0d7
dir: /src/libc/stdio/feof.c/

View raw version
#include <stdio.h>

#undef feof

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