shithub: scc

ref: 607e768887f2b705e4d855754ffd41009b16b078
dir: /src/libc/stdio/ferror.c/

View raw version
#include <stdio.h>

#undef ferror

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