shithub: scc

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

View raw version

#include <stdio.h>
#undef feof

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