diff options
Diffstat (limited to 'src/stdio/ferror.c')
-rw-r--r-- | src/stdio/ferror.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdio/ferror.c b/src/stdio/ferror.c index 66f76a67..b5a4a085 100644 --- a/src/stdio/ferror.c +++ b/src/stdio/ferror.c @@ -3,6 +3,7 @@ #include "_stdio.h" /** tests the file stream error indicator **/ + int ferror(FILE *stream) { ASSERT_NONNULL(stream); @@ -16,6 +17,7 @@ int ferror(FILE *stream) /*** tests the error indicator of ARGUMENT(stream). ***/ + /* STDC(1) */ |