]> pd.if.org Git - pdclib/blobdiff - functions/stdio/putchar.c
Removed SVN keyword tags.
[pdclib] / functions / stdio / putchar.c
index 52063a57f713036c09a84a1e659ba2956f4a12fb..ca184f750bec3552f72d21f3966a93032ef8029d 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* putchar( int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -9,10 +7,11 @@
 #include <stdio.h>
 
 #ifndef REGTEST
+#include <_PDCLIB_io.h>
 
-int putchar_unlocked( int c )
+int _PDCLIB_putchar_unlocked( int c )
 {
-    return fputc_unlocked( c, stdout );
+    return _PDCLIB_fputc_unlocked( c, stdout );
 }
 
 int putchar( int c )