shithub: scc

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

View raw version

#include <stdio.h>
#undef feof

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