mirror of
https://github.com/fluencelabs/musl
synced 2025-06-01 00:51:41 +00:00
11 lines
124 B
C
11 lines
124 B
C
|
#include "stdio_impl.h"
|
||
|
|
||
|
#undef feof
|
||
|
|
||
|
int feof(FILE *f)
|
||
|
{
|
||
|
return !!(f->flags & F_EOF);
|
||
|
}
|
||
|
|
||
|
weak_alias(feof, feof_unlocked);
|