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