shithub: scc

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

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

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