blob: d692eed9418ea1f0cf36c948bacad20d6afc526c [file] [log] [blame]
#include "stdio_impl.h"
#undef ferror
int ferror(FILE *f)
{
FLOCK(f);
int ret = !!(f->flags & F_ERR);
FUNLOCK(f);
return ret;
}
weak_alias(ferror, ferror_unlocked);
weak_alias(ferror, _IO_ferror_unlocked);