ref: e2a048f429e08e770a28d14147e24da5f1d64dad
dir: /sys/src/libstdio/clearerr.c/
/*
* pANS stdio -- clearerr
*/
#include "iolib.h"
void clearerr(FILE *f){
switch(f->state){
case ERR:
f->state=f->buf?RDWR:OPEN;
break;
case END:
f->state=RDWR;
break;
}
}