]> git.sur5r.net Git - cc65/blobdiff - src/cc65/coptadd.c
Comment and indentation changes
[cc65] / src / cc65 / coptadd.c
index 76f697d792a22a55dca4f779e1d3413e98cfdd53..d490574d9cdff5dd96091097d4d017bf41945c22 100644 (file)
@@ -33,7 +33,8 @@
 
 
 
-#include <ctype.h>
+/* common */
+#include "chartype.h"
 
 /* cc65 */
 #include "codeent.h"
@@ -393,7 +394,7 @@ unsigned OptAdd4 (CodeSeg* S)
        /* Check for the sequence */
         if (E->OPC == OP65_JSR                          &&
             strncmp (E->Arg, "incax", 5) == 0           &&
-            isdigit (E->Arg[5])                         &&
+            IsDigit (E->Arg[5])                         &&
             E->Arg[6] == '\0'                           &&
             !RegXUsed (S, I+1)) {