X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fctype%2Fisalpha.c;h=ce05b76d87aef120e2cb431d46ed9903dd1bb9ce;hb=4321ebdd142b534d8b7b6c31e01790f77ac46319;hp=147fd5eb14e82b4ab59f991dcdacb5d6b2f897f6;hpb=d77b84be585e9ceaed1501579df5a4aec6a24a63;p=pdclib diff --git a/functions/ctype/isalpha.c b/functions/ctype/isalpha.c index 147fd5e..ce05b76 100644 --- a/functions/ctype/isalpha.c +++ b/functions/ctype/isalpha.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* isalpha( int ) This file is part of the Public Domain C Library (PDCLib). @@ -9,7 +7,7 @@ #include #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 ) {