X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fputc.c;h=c1f3fc279eef8fae8b96fdb77db77829a7466fa5;hb=d70d75f5f46047f7546b14f424cccad7316bff6a;hp=60a4dba9294c296dd92fafd5c73f9d8a40ae0704;hpb=a448f97e288aa4bd84fdc8d553b335b8d0efb725;p=pdclib.old diff --git a/functions/stdio/putc.c b/functions/stdio/putc.c index 60a4dba..c1f3fc2 100644 --- a/functions/stdio/putc.c +++ b/functions/stdio/putc.c @@ -10,6 +10,12 @@ #ifndef REGTEST +int putc_unlocked( int c, struct _PDCLIB_file_t * stream ) +{ + return fputc_unlocked( c, stream ); +} + + int putc( int c, struct _PDCLIB_file_t * stream ) { return fputc( c, stream );