shithub: scc

ref: 015d343c41900f127914b3f0345353c9b0deff77
dir: /src/libc/stdio/feof.c/

View raw version
#include <stdio.h>
#undef feof

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