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