shithub: scc

ref: 7411192014bae74906a1f1116413a4f578bfaebd
dir: /src/libc/stdio/ferror.c/

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

int
ferror(FILE *fp)
{
	return fp->flags & _IOERR;
}