shithub: scc

ref: fcc4d827f855bae3c6e3f1fb7eaaec326bc4765c
dir: /lib/c/ferror.c/

View raw version

#include <stdio.h>
#undef ferror

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