]> pd.if.org Git - pdclib/blobdiff - functions/stdio/putchar.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / putchar.c
index a79932f9e4f402ff444150c2054a59dcc2e5c378..4e69047ffd0f71919f30deff0593ad28a5e350a7 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* putchar( int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -9,7 +7,7 @@
 #include <stdio.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_io.h>
+#include "_PDCLIB_io.h"
 
 int _PDCLIB_putchar_unlocked( int c )
 {
@@ -24,7 +22,7 @@ int putchar( int c )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {