blob: 04d7a71dace2ef29191f58b78515ee70f7229964 [file] [log] [blame]
#include "stdio_impl.h"
void clearerr(FILE* f) {
FLOCK(f);
f->flags &= ~(F_EOF | F_ERR);
FUNLOCK(f);
}
weak_alias(clearerr, clearerr_unlocked);