shithub: scc

ref: 9c4c13bcccfc42136fe7650d0e905301268cb3f2
dir: /src/libc/stdio/ferror.c/

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

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