shithub: scc

ref: a634369fb989684a8080794e9a96cf34b6ff81d6
dir: /src/libc/stdio/ferror.c/

View raw version
#include <stdio.h>

#undef ferror

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