]> pd.if.org Git - pdclib.old/blobdiff - functions/stdio/clearerr.c
Namespace cleanliness: Rename all ***_unlocked functions to _PDCLIB_***_unlocked.
[pdclib.old] / functions / stdio / clearerr.c
index 20af80f298b4a1e792e6e8de80b5cce58f4e977a..a80e3e2987a1b727643717a5857c0cc8e48cd6d9 100644 (file)
 #ifndef REGTEST
 #include <_PDCLIB_io.h>
 
-void clearerr_unlocked( FILE * stream )
+void _PDCLIB_clearerr_unlocked( FILE * stream )
 {
     stream->status &= ~( _PDCLIB_ERRORFLAG | _PDCLIB_EOFFLAG );
 }
 
 void clearerr( FILE * stream )
 {
-    flockfile( stream );
-    clearerr_unlocked( stream );
-    funlockfile( stream );
+    _PDCLIB_flockfile( stream );
+    _PDCLIB_clearerr_unlocked( stream );
+    _PDCLIB_funlockfile( stream );
 }
 
 #endif