shithub: scc

ref: 95d704d06828e99541170b8f5bfc97240d31b79d
dir: /src/libc/stdio/ferror.c/

View raw version
#include <stdio.h>

#undef ferror

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