]> pd.if.org Git - pdclib/blobdiff - functions/stdio/ungetc.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / ungetc.c
index 56ba98b26c3b463ba08bd7f7bdd993a2fd93b6b9..560099d4e20737f213804051c5ada2c576b19fcc 100644 (file)
@@ -7,7 +7,7 @@
 #include <stdio.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_io.h>
+#include "_PDCLIB_io.h"
 
 int _PDCLIB_ungetc_unlocked( int c, FILE * stream )
 {
@@ -29,7 +29,7 @@ int ungetc( int c, FILE * stream )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 #include <stdlib.h>
 
 const char* hellostr = "Hello, world!";