X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2F_PDCLIB_filemode.c;h=92b7b41b65fa7544dce39368083b5689fe3e358a;hp=c6066f899b13552edc46173bfbceb032b8e26e32;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=3082b97d8f2de1584430ad42671a0e056ed33be4 diff --git a/functions/stdio/_PDCLIB_filemode.c b/functions/stdio/_PDCLIB_filemode.c index c6066f8..92b7b41 100644 --- a/functions/stdio/_PDCLIB_filemode.c +++ b/functions/stdio/_PDCLIB_filemode.c @@ -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 #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 ) {