shithub: scc

ref: 39dff9f7b0cb26421d0b67fc003fdda8db867e0b
dir: /src/libc/stdio/feof.c/

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

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