diff options
| author | Kacper <kacper@mail.openlinux.dev> | 2025-12-22 23:27:56 +0100 |
|---|---|---|
| committer | Kacper <kacper@mail.openlinux.dev> | 2025-12-22 23:30:32 +0100 |
| commit | 0f30d227497418c6d3bef7d52244407e30454504 (patch) | |
| tree | 0e1ac19623d3268380cf74328cdf643648a2f43c /lib/libc/stdio/feof.c | |
| parent | 90dad97fc07f049383903a166631e2c257f9b8c1 (diff) | |
Added c11 threads, fixed some locks and add *_unlocked functions
Diffstat (limited to 'lib/libc/stdio/feof.c')
| -rw-r--r-- | lib/libc/stdio/feof.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/libc/stdio/feof.c b/lib/libc/stdio/feof.c index f9245d06..6a36172b 100644 --- a/lib/libc/stdio/feof.c +++ b/lib/libc/stdio/feof.c @@ -1,12 +1,13 @@ -#include "stddef.h" // for NULL - -#include <__stdio.h> // for __FILE -#include <stdio.h> // for FILE, feof +#include <__stdio.h> +#include <stdio.h> int feof(FILE *stream) { - if (stream == NULL) - return 0; + int r; + + flockfile(stream); + r = feof_unlocked(stream); + funlockfile(stream); - return (__FILE(stream))->eof; + return r; } |
