]> pd.if.org Git - pdclib/blobdiff - functions/stdio/clearerr.c
Removed SVN keyword tags.
[pdclib] / functions / stdio / clearerr.c
index 20af80f298b4a1e792e6e8de80b5cce58f4e977a..9fc64a50240eedb5eb241e05a386fd7002aec5bd 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* clearerr( FILE * )
 
    This file is part of the Public Domain C Library (PDCLib).
 #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