mirror of
https://github.com/fluencelabs/musl
synced 2025-06-16 00:11:36 +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);
|