X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fputc.c;h=c1f3fc279eef8fae8b96fdb77db77829a7466fa5;hb=84d648157e22cecc65902ecfdd4e3a1b88d5e53f;hp=60a4dba9294c296dd92fafd5c73f9d8a40ae0704;hpb=fce9a8538009ea5c113b03c608cedf036ce4a364;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 );