summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/feof.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/stdio/feof.c')
-rw-r--r--lib/libc/stdio/feof.c15
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;
}