shithub: scc

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

View raw version
#include <stdio.h>

#undef ferror

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