summaryrefslogtreecommitdiff
path: root/userland/libc/stdio/feof.c
diff options
context:
space:
mode:
Diffstat (limited to 'userland/libc/stdio/feof.c')
-rw-r--r--userland/libc/stdio/feof.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/userland/libc/stdio/feof.c b/userland/libc/stdio/feof.c
index 7f46301..91e7e56 100644
--- a/userland/libc/stdio/feof.c
+++ b/userland/libc/stdio/feof.c
@@ -1,5 +1,5 @@
#include <stdio.h>
int feof(FILE *stream) {
- return stream->is_eof;
+ return stream->is_eof;
}