mirror of
https://github.com/fluencelabs/musl
synced 2025-05-24 13:11:33 +00:00
11 lines
147 B
C
11 lines
147 B
C
#include "stdio_impl.h"
|
|
|
|
void clearerr(FILE *f)
|
|
{
|
|
FLOCK(f);
|
|
f->flags &= ~(F_EOF|F_ERR);
|
|
FUNLOCK(f);
|
|
}
|
|
|
|
weak_alias(clearerr, clearerr_unlocked);
|