From: Owen Shepherd Date: Thu, 15 Nov 2012 20:03:28 +0000 (+0000) Subject: PDCLIB-15: _PDCLIB_print now calls through to putc_unlocked X-Git-Url: https://pd.if.org/git/?p=pdclib;a=commitdiff_plain;h=eb6f9c3c6065ad3975d69630d622d91374784806 PDCLIB-15: _PDCLIB_print now calls through to putc_unlocked --- diff --git a/functions/_PDCLIB/print.c b/functions/_PDCLIB/print.c index aa39707..dcdb7bd 100644 --- a/functions/_PDCLIB/print.c +++ b/functions/_PDCLIB/print.c @@ -53,7 +53,7 @@ do { \ int character = x; \ if ( status->i < status->n ) { \ if ( status->stream != NULL ) \ - putc( character, status->stream ); \ + putc_unlocked( character, status->stream ); \ else \ status->s[status->i] = character; \ } \