]> pd.if.org Git - pdclib/blobdiff - functions/stdio/ferror.c
Removed SVN keyword tags.
[pdclib] / functions / stdio / ferror.c
index f683787e567975ad8cd759b58bee255a16ddc990..0067bed48288d6be1598af124299af8b0bc5d3ba 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* ferror( FILE * )
 
    This file is part of the Public Domain C Library (PDCLib).
 #ifndef REGTEST
 #include <_PDCLIB_io.h>
 
-int ferror_unlocked( FILE * stream )
+int _PDCLIB_ferror_unlocked( FILE * stream )
 {
     return stream->status & _PDCLIB_ERRORFLAG;
 }
 
 int ferror( FILE * stream )
 {
-    flockfile( stream );
-    int error = ferror_unlocked( stream );
-    funlockfile( stream );
+    _PDCLIB_flockfile( stream );
+    int error = _PDCLIB_ferror_unlocked( stream );
+    _PDCLIB_funlockfile( stream );
     return error;
 }