1 /* 2 * pANS stdio -- ferror 3 */ 4 #include "iolib.h" ferror(FILE * f)5 int ferror(FILE *f){ 6 return f->state==ERR; 7 } 8