]> git.sur5r.net Git - cc65/blobdiff - src/cc65/ident.c
Removed unused modules
[cc65] / src / cc65 / ident.c
index 615997ab9b6c95f5b5f1c648f18f76f40c595ac0..f29f06a7432ecf31b729720f7c6d3d9d845b9d4f 100644 (file)
 
 
 
-#include <ctype.h>
-
+/* 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 == '_');
 }