blob: a1ea4f7e1ddbd79ad72e8019dae13d6454c617ea [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);