From eb6f9c3c6065ad3975d69630d622d91374784806 Mon Sep 17 00:00:00 2001 From: Owen Shepherd Date: Thu, 15 Nov 2012 20:03:28 +0000 Subject: [PATCH] PDCLIB-15: _PDCLIB_print now calls through to putc_unlocked --- functions/_PDCLIB/print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; \ } \ -- 2.40.0