shithub: scc

ref: 914c674f1eec2150b7d2c2bb8066c023c66878dd
dir: /src/libc/stdio/feof.c/

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

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