shithub: scc

ref: 0c5f7ed72475e2aef74aa672bab0d3a39dee2ecb
dir: /lib/c/feof.c/

View raw version

#include <stdio.h>
#undef feof

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