shithub: scc

ref: 4691d9aba548d25e59960b02334f98991a534a4c
dir: /src/libc/stdio/ferror.c/

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

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