X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2Fclearerr.c;h=e569fd4085382801f8b34dedc20e8863e718461d;hp=af25029032f1fc4d79ec89654bb4bd690a81592e;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=6c8c4f80e32177f27f89b4aff3b7568a7afd4041 diff --git a/functions/stdio/clearerr.c b/functions/stdio/clearerr.c index af25029..e569fd4 100644 --- a/functions/stdio/clearerr.c +++ b/functions/stdio/clearerr.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* clearerr( FILE * ) This file is part of the Public Domain C Library (PDCLib). @@ -9,16 +7,24 @@ #include #ifndef REGTEST +#include "_PDCLIB_io.h" -void clearerr( struct _PDCLIB_file_t * stream ) +void _PDCLIB_clearerr_unlocked( FILE * stream ) { stream->status &= ~( _PDCLIB_ERRORFLAG | _PDCLIB_EOFFLAG ); } +void clearerr( FILE * stream ) +{ + _PDCLIB_flockfile( stream ); + _PDCLIB_clearerr_unlocked( stream ); + _PDCLIB_funlockfile( stream ); +} + #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" int main( void ) { @@ -28,6 +34,7 @@ int main( void ) TESTCASE( ! ferror( fh ) ); TESTCASE( ! feof( fh ) ); /* Reading from input stream - should provoke error */ + /* FIXME: Apparently glibc disagrees on this assumption. How to provoke error on glibc? */ TESTCASE( fgetc( fh ) == EOF ); TESTCASE( ferror( fh ) ); TESTCASE( ! feof( fh ) );