X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fclearerr.c;h=9fc64a50240eedb5eb241e05a386fd7002aec5bd;hb=5d2d7d278a2fabd52a252676c6e5b1bb9be630c7;hp=810e62d7606d99f79613df9faa97ec520f13819d;hpb=55cf35957bf8dec0a489ba758c02c83303a5eb50;p=pdclib diff --git a/functions/stdio/clearerr.c b/functions/stdio/clearerr.c index 810e62d..9fc64a5 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,12 +7,20 @@ #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 @@ -23,12 +29,12 @@ void clearerr( struct _PDCLIB_file_t * stream ) int main( void ) { FILE * fh; - remove( "testing/testfile" ); - TESTCASE( ( fh = fopen( "testing/testfile", "w+" ) ) != NULL ); + TESTCASE( ( fh = tmpfile() ) != NULL ); /* Flags should be clear */ 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 ) ); @@ -46,7 +52,6 @@ int main( void ) TESTCASE( ! ferror( fh ) ); TESTCASE( ! feof( fh ) ); TESTCASE( fclose( fh ) == 0 ); - remove( "testing/testfile" ); return TEST_RESULTS; }