shithub: scc

ref: 496a51ccfcc302614f6647cc75478f5a126ff5fc
dir: /src/libc/stdio/ferror.c/

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

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