shithub: scc

ref: 8e3bfac935622927d740135a2d0cb970743632c6
dir: /lib/c/feof.c/

View raw version

#include <stdio.h>
#undef feof

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