blob: 3bf94d30795d76d9d408000ac3f911f16090437f [file] [log] [blame]
Rich Felker0b44a032011-02-12 00:22:29 -05001#include "stdio_impl.h"
2
3void clearerr(FILE *f)
4{
5 FLOCK(f);
6 f->flags &= ~(F_EOF|F_ERR);
7 FUNLOCK(f);
8}
9
10weak_alias(clearerr, clearerr_unlocked);