musl - an implementation of the standard library for Linux-based systems
blob: f2b739b5c89507291c101ed6e237d8ad719666c7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include "stdio_impl.h"
#undef feof
int feof(FILE *f)
{
return !!(f->flags & F_EOF);
}
weak_alias(feof, feof_unlocked);
|