]> pd.if.org Git - pdclib/blobdiff - functions/stdio/putchar.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / putchar.c
index e5a3500fa5c756d12a713f93f18a8cdd0ccb8d1c..4e69047ffd0f71919f30deff0593ad28a5e350a7 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* putchar( int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -9,6 +7,12 @@
 #include <stdio.h>
 
 #ifndef REGTEST
+#include "_PDCLIB_io.h"
+
+int _PDCLIB_putchar_unlocked( int c )
+{
+    return _PDCLIB_fputc_unlocked( c, stdout );
+}
 
 int putchar( int c )
 {
@@ -18,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;
 }