]> pd.if.org Git - pdclib/blobdiff - functions/stdio/fputc.c
System includes -> local includes.
[pdclib] / functions / stdio / fputc.c
index c6120ed71b5b1767cc81888beb78094da20cc46c..1ea99e9d952adb4524693f4ca5c2e177b3d2604b 100644 (file)
@@ -8,7 +8,7 @@
 
 #ifndef REGTEST
 
-#include <_PDCLIB_glue.h>
+#include "_PDCLIB_glue.h"
 
 /* Write the value c (cast to unsigned char) to the given stream.
    Returns c if successful, EOF otherwise.
@@ -35,7 +35,7 @@ int fputc( int c, struct _PDCLIB_file_t * stream )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {