X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fputchar.c;h=52063a57f713036c09a84a1e659ba2956f4a12fb;hb=5fe150c45e1bfecf7b14d17d08317436e5bc53b4;hp=e5a3500fa5c756d12a713f93f18a8cdd0ccb8d1c;hpb=b08f4b52b1cd1f7a9553c0f357a7c90859fa3e73;p=pdclib diff --git a/functions/stdio/putchar.c b/functions/stdio/putchar.c index e5a3500..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 ); @@ -22,7 +27,7 @@ int putchar( int c ) int main( void ) { - TESTCASE( NO_TESTDRIVER ); + /* Testing covered by ftell.c */ return TEST_RESULTS; }