]> pd.if.org Git - pdclib.old/blobdiff - functions/stdio/ferror.c
Minimize the amount of internal definitions which get exposed via the user-visible...
[pdclib.old] / functions / stdio / ferror.c
index 394dcda2bc7dd07dee9cad93b61dfd95ec50ddd1..f683787e567975ad8cd759b58bee255a16ddc990 100644 (file)
@@ -9,13 +9,14 @@
 #include <stdio.h>
 
 #ifndef REGTEST
+#include <_PDCLIB_io.h>
 
-int ferror_unlocked( struct _PDCLIB_file_t * stream )
+int ferror_unlocked( FILE * stream )
 {
     return stream->status & _PDCLIB_ERRORFLAG;
 }
 
-int ferror( struct _PDCLIB_file_t * stream )
+int ferror( FILE * stream )
 {
     flockfile( stream );
     int error = ferror_unlocked( stream );