shithub: scc

ref: 129524453b2c951211118a818d4bf45c1bea840a
dir: /src/libc/stdio/ferror.c/

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

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