shithub: scc

ref: 3a11ea050c4cec90cb4827042e4d13a4de6ef20c
dir: /lib/c/feof.c/

View raw version

#include <stdio.h>
#undef feof

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