shithub: scc

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

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

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