mirror of
https://github.com/fluencelabs/musl
synced 2025-06-13 23:11:51 +00:00
11 lines
132 B
C
11 lines
132 B
C
#include "stdio_impl.h"
|
|
|
|
#undef ferror
|
|
|
|
int ferror(FILE *f)
|
|
{
|
|
return !!(f->flags & F_ERR);
|
|
}
|
|
|
|
weak_alias(ferror, ferror_unlocked);
|