]> pd.if.org Git - pdclib/blobdiff - functions/ctype/toupper.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / ctype / toupper.c
index 2972b51b754550c1b1cd8859df3bf152584671e8..16b981abf4e027d83619ba7fbc5d34c6dabaf696 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* toupper( int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -9,7 +7,7 @@
 #include <ctype.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_locale.h>
+#include "_PDCLIB_locale.h"
 
 int toupper( int c )
 {
@@ -19,7 +17,7 @@ int toupper( int c )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {