shithub: scc

ref: e2fea8937a5f182b9e472c1e4e969efedeee8eea
dir: /lib/c/feof.c/

View raw version

#include <stdio.h>
#undef feof

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