X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fputc.c;h=6bb2e9e58ce2e9b772687e9920c42b069ddf87d1;hb=57b18f40129b23d166a9c244a6776517a08d1c40;hp=60a4dba9294c296dd92fafd5c73f9d8a40ae0704;hpb=a448f97e288aa4bd84fdc8d553b335b8d0efb725;p=pdclib.old 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 ); }