shithub: scc

ref: 7ae4cdf7ae71be76936061c036d07e7e34545ec4
dir: /src/libc/stdio/ferror.c/

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

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