X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fcc65%2Fident.c;h=f29f06a7432ecf31b729720f7c6d3d9d845b9d4f;hb=73dfa23c987d8a7f1154801b85c171f9e01dcd58;hp=615997ab9b6c95f5b5f1c648f18f76f40c595ac0;hpb=53dd513176425872128ef26031d00952ef7a0628;p=cc65 diff --git a/src/cc65/ident.c b/src/cc65/ident.c index 615997ab9..f29f06a74 100644 --- a/src/cc65/ident.c +++ b/src/cc65/ident.c @@ -33,8 +33,10 @@ -#include - +/* common */ +#include "chartype.h" + +/* cc65 */ #include "ident.h" @@ -48,7 +50,7 @@ int IsIdent (char c) /* Return true if the given char may start an identifier */ { - return (isalpha (c) || c == '_'); + return (IsAlpha (c) || c == '_'); }