]> pd.if.org Git - pdclib/blobdiff - functions/stdio/fputc.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / fputc.c
index 6224c5ec00d9f7375c8cdcb0cb330b10df64ed06..1252e6365af44533563f3d4f58bb2151a8c38507 100644 (file)
@@ -7,7 +7,7 @@
 #include <stdio.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_io.h>
+#include "_PDCLIB_io.h"
 
 /* Write the value c (cast to unsigned char) to the given stream.
    Returns c if successful, EOF otherwise.
@@ -42,7 +42,7 @@ int fputc( int c, FILE * stream )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {