]> pd.if.org Git - pdclib.old/blobdiff - functions/stdio/putc.c
Minimize the amount of internal definitions which get exposed via the user-visible...
[pdclib.old] / functions / stdio / putc.c
index c1f3fc279eef8fae8b96fdb77db77829a7466fa5..6bb2e9e58ce2e9b772687e9920c42b069ddf87d1 100644 (file)
 
 #ifndef REGTEST
 
-int putc_unlocked( int c, struct _PDCLIB_file_t * stream )
+int putc_unlocked( int c, FILE * stream )
 {
     return fputc_unlocked( c, stream );
 }
 
 
-int putc( int c, struct _PDCLIB_file_t * stream )
+int putc( int c, FILE * stream )
 {
     return fputc( c, stream );
 }