Consolidate ARRAY_SIZE macro; remove one unneeded global var (walter harms <wharms@bfs.de>)

This commit is contained in:
Denis Vlasenko
2007-06-25 10:55:35 +00:00
parent 1399282b47
commit 80b8b39899
26 changed files with 55 additions and 66 deletions

View File

@ -146,7 +146,6 @@ static const struct t_op {
{ ")" , RPAREN , PAREN },
};
enum { NUM_OPS = sizeof(ops) / sizeof(ops[0]) };
#if ENABLE_FEATURE_TEST_64
typedef int64_t arith_t;
@ -471,7 +470,7 @@ static enum token t_lex(char *s)
return op->op_num;
}
op++;
} while (op < ops + NUM_OPS);
} while (op < ops + ARRAY_SIZE(ops));
return OPERAND;
}