X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fctype%2Fisalpha.c;h=ce05b76d87aef120e2cb431d46ed9903dd1bb9ce;hp=147fd5eb14e82b4ab59f991dcdacb5d6b2f897f6;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=d77b84be585e9ceaed1501579df5a4aec6a24a63 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 ) {