X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fputc.c;h=6bb2e9e58ce2e9b772687e9920c42b069ddf87d1;hb=8fe5c57b4d17e5637dac34f797c6530e1b1ce220;hp=60a4dba9294c296dd92fafd5c73f9d8a40ae0704;hpb=9a862b964b7c7226f4d2fc52de13e0db0a9c66d4;p=pdclib diff --git a/functions/stdio/putc.c b/functions/stdio/putc.c index 60a4dba..6bb2e9e 100644 --- a/functions/stdio/putc.c +++ b/functions/stdio/putc.c @@ -10,7 +10,13 @@ #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 ); }