]> 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 60a4dba9294c296dd92fafd5c73f9d8a40ae0704..6bb2e9e58ce2e9b772687e9920c42b069ddf87d1 100644 (file)
 
 #ifndef REGTEST
 
-int putc( int c, struct _PDCLIB_file_t * stream )
+int putc_unlocked( int c, FILE * stream )
+{
+    return fputc_unlocked( c, stream );
+}
+
+
+int putc( int c, FILE * stream )
 {
     return fputc( c, stream );
 }