diff options
Diffstat (limited to 'src/stdio/feof.c')
-rw-r--r-- | src/stdio/feof.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stdio/feof.c b/src/stdio/feof.c index 80f4ddca..94531fcf 100644 --- a/src/stdio/feof.c +++ b/src/stdio/feof.c @@ -1,8 +1,9 @@ #include <stdio.h> -#include "_stdio.h" #include "_assert.h" +#include "_stdio.h" /** test for end-of-file **/ + int feof(FILE *stream) { ASSERT_NONNULL(stream); @@ -24,6 +25,7 @@ int feof(FILE *stream) /*** tests for the end-of-file indicator of ARGUMENT(stream). ***/ + /* STDC(1) */ |