]> pd.if.org Git - pdclib/blobdiff - functions/stdio/scanf.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / scanf.c
index 7da1902a0826a574a13b44d1870a2cd1bfd4e116..8d0492ba062776056f06f1b796df754183915cfa 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* scanf( const char *, ... )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -10,7 +8,7 @@
 #include <stdarg.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_io.h>
+#include "_PDCLIB_io.h"
 
 int _PDCLIB_scanf_unlocked( const char * _PDCLIB_restrict format, ... )
 {
@@ -32,7 +30,7 @@ int scanf( const char * _PDCLIB_restrict format, ... )
 #define _PDCLIB_FILEID "stdio/scanf.c"
 #define _PDCLIB_FILEIO
 
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 #define testscanf( stream, format, ... ) scanf( format, __VA_ARGS__ )