shithub: scc

ref: 59ec69003f284ff73480ce2724e50fe7ee178f98
dir: /lib/c/feof.c/

View raw version

#include <stdio.h>
#undef feof

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