shithub: scc

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

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

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