shithub: scc

ref: 6cd7862223d13fd0897c3fafc213dccf874b7101
dir: /src/libc/stdio/feof.c/

View raw version
#include <stdio.h>

#undef feof

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