]> pd.if.org Git - pdclib/blobdiff - functions/stdio/_PDCLIB_filemode.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdio / _PDCLIB_filemode.c
index c6066f899b13552edc46173bfbceb032b8e26e32..92b7b41b65fa7544dce39368083b5689fe3e358a 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* _PDCLIB_filemode( const char * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -9,7 +7,7 @@
 #include <stddef.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_io.h>
+#include "_PDCLIB_io.h"
 /* Helper function that parses the C-style mode string passed to fopen() into
    the PDCLib flags FREAD, FWRITE, FAPPEND, FRW (read-write) and FBIN (binary
    mode).
@@ -60,7 +58,7 @@ unsigned int _PDCLIB_filemode( char const * const mode )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {