diff options
Diffstat (limited to 'src/stdio/clearerr.c')
-rw-r--r-- | src/stdio/clearerr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdio/clearerr.c b/src/stdio/clearerr.c index b15ba362..44510744 100644 --- a/src/stdio/clearerr.c +++ b/src/stdio/clearerr.c @@ -2,6 +2,7 @@ #include "_stdio.h" /** reset file stream error indicator **/ + void clearerr(FILE * stream) { flockfile(stream); @@ -15,6 +16,7 @@ void clearerr(FILE * stream) /*** clears the error and end-of-file indicators of ARGUMENT(stream). ***/ + /* STDC(1) */ |