shithub: scc

ref: 1ebd02c28ba4d5969e349942e2ec7334ca13d195
dir: /lib/c/feof.c/

View raw version

#include <stdio.h>
#undef feof

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