X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2Fputchar.c;h=4e69047ffd0f71919f30deff0593ad28a5e350a7;hp=7ef20147bf1701563794d3077a71f4d695cfbd88;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=d02f38605b53cdff5460cc6b9e1b2a80c3a2ba4c diff --git a/functions/stdio/putchar.c b/functions/stdio/putchar.c index 7ef2014..4e69047 100644 --- a/functions/stdio/putchar.c +++ b/functions/stdio/putchar.c @@ -1,7 +1,3 @@ -/* $Id$ */ - -/* Release $Name$ */ - /* putchar( int ) This file is part of the Public Domain C Library (PDCLib). @@ -11,6 +7,12 @@ #include #ifndef REGTEST +#include "_PDCLIB_io.h" + +int _PDCLIB_putchar_unlocked( int c ) +{ + return _PDCLIB_fputc_unlocked( c, stdout ); +} int putchar( int c ) { @@ -20,11 +22,11 @@ int putchar( int c ) #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" int main( void ) { - TESTCASE( NO_TESTDRIVER ); + /* Testing covered by ftell.c */ return TEST_RESULTS; }