shithub: scc

ref: 4f93908533138a0efbdffd880003438f98af736e
dir: /src/libc/stdio/feof.c/

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

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