X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fputchar.c;h=52063a57f713036c09a84a1e659ba2956f4a12fb;hb=6ca24b75c75b9c6f22e1e69693d326b8e3330841;hp=4e2d6ae7c0717b34ab5a301cb7c8e40a8c288977;hpb=9a862b964b7c7226f4d2fc52de13e0db0a9c66d4;p=pdclib diff --git a/functions/stdio/putchar.c b/functions/stdio/putchar.c index 4e2d6ae..52063a5 100644 --- a/functions/stdio/putchar.c +++ b/functions/stdio/putchar.c @@ -10,6 +10,11 @@ #ifndef REGTEST +int putchar_unlocked( int c ) +{ + return fputc_unlocked( c, stdout ); +} + int putchar( int c ) { return fputc( c, stdout );