]> pd.if.org Git - pdclib/blobdiff - functions/ctype/isxdigit.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / ctype / isxdigit.c
index e0b0f60b2ffafa2f0e219197ba1c8441d19b9c61..2b694d8eb7007b058fceed9b435082677bb90c0c 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* isxdigit( 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 isxdigit( int c )
 {
@@ -19,7 +17,7 @@ int isxdigit( int c )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {