X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fclearerr.c;h=20af80f298b4a1e792e6e8de80b5cce58f4e977a;hb=79a936883a9892871285766e2afb5f1613bc7205;hp=af50f14f49531523784496424da245fec0c8c81f;hpb=33515db12d3cc5e53a8bdea58d2cde299cba2267;p=pdclib.old diff --git a/functions/stdio/clearerr.c b/functions/stdio/clearerr.c index af50f14..20af80f 100644 --- a/functions/stdio/clearerr.c +++ b/functions/stdio/clearerr.c @@ -9,12 +9,20 @@ #include #ifndef REGTEST +#include <_PDCLIB_io.h> -void clearerr( struct _PDCLIB_file_t * stream ) +void clearerr_unlocked( FILE * stream ) { stream->status &= ~( _PDCLIB_ERRORFLAG | _PDCLIB_EOFFLAG ); } +void clearerr( FILE * stream ) +{ + flockfile( stream ); + clearerr_unlocked( stream ); + funlockfile( stream ); +} + #endif #ifdef TEST