]> pd.if.org Git - pdclib.old/blobdiff - functions/stdio/fprintf.c
Minimize the amount of internal definitions which get exposed via the user-visible...
[pdclib.old] / functions / stdio / fprintf.c
index 421ca5273f8e153f763c12b0b4399e1f008c1b2a..0227cd4d17ad520dfb99bc21160d060f0ccb93bb 100644 (file)
@@ -10,8 +10,9 @@
 #include <stdarg.h>
 
 #ifndef REGTEST
+#include <_PDCLIB_io.h>
 
-int fprintf_unlocked( struct _PDCLIB_file_t * _PDCLIB_restrict stream, 
+int fprintf_unlocked( FILE * _PDCLIB_restrict stream, 
                       const char * _PDCLIB_restrict format, ... )
 {
     int rc;
@@ -22,7 +23,7 @@ int fprintf_unlocked( struct _PDCLIB_file_t * _PDCLIB_restrict stream,
     return rc;
 }
 
-int fprintf( struct _PDCLIB_file_t * _PDCLIB_restrict stream,
+int fprintf( FILE * _PDCLIB_restrict stream,
              const char * _PDCLIB_restrict format, ... )
 {
     int rc;