shithub: scc

ref: 970841705f1d80dcbd2717d42545b10220fad35e
dir: /lib/c/feof.c/

View raw version

#include <stdio.h>
#undef feof

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