shithub: scc

ref: 989b26202e9264b37237371f85a19630ec4f1b0a
dir: /src/libc/stdio/ferror.c/

View raw version
#include <stdio.h>

#undef ferror

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