]> pd.if.org Git - pdclib/blobdiff - functions/stdio/clearerr.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / clearerr.c
index af50f14f49531523784496424da245fec0c8c81f..e569fd4085382801f8b34dedc20e8863e718461d 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* clearerr( FILE * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -9,16 +7,24 @@
 #include <stdio.h>
 
 #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 )
 {