]> pd.if.org Git - pdclib/blobdiff - functions/stdio/ferror.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / ferror.c
index f683787e567975ad8cd759b58bee255a16ddc990..43fad2d8f67031fde75c3cb2713a48f2a743b4fa 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* ferror( FILE * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -9,25 +7,25 @@
 #include <stdio.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_io.h>
+#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;
 }
 
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {