diff options
Diffstat (limited to 'src/stdio/feof.c')
| -rw-r--r-- | src/stdio/feof.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/stdio/feof.c b/src/stdio/feof.c index 8e00489c..39d9b645 100644 --- a/src/stdio/feof.c +++ b/src/stdio/feof.c @@ -1,13 +1,11 @@ -#if 0 - #include <stdio.h> -#include "_assert.h" #include "_stdio.h" /** test for end-of-file **/ int feof(FILE *stream) { + SIGNAL_SAFE(0); ASSERT_NONNULL(stream); flockfile(stream); @@ -31,6 +29,3 @@ tests for the end-of-file indicator of ARGUMENT(stream). /* STDC(1) */ - - -#endif |
