shithub: scc

ref: 04eaa4bdf25f5d142a47eed13dff69a5cf4497e1
dir: /src/libc/stdio/ferror.c/

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

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