shithub: scc

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

View raw version
#include <stdio.h>

#undef ferror

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