* src/gram.h, src/gram.c (nitems): Remove, it is an alias of

nritems.
Adjust dependencies.
This commit is contained in:
Akim Demaille
2002-04-07 17:44:24 +00:00
parent f3849179e5
commit 5123689ba0
11 changed files with 45 additions and 42 deletions

View File

@@ -27,18 +27,17 @@
/* comments for these variables are in gram.h */
int nitems = 0;
int nrules = 0;
int nsyms = 0;
int ntokens = 1;
int nvars = 0;
short *ritem = NULL;
int nritems = 0;
rule_t *rules = NULL;
int nrules = 0;
symbol_t **symbols = NULL;
int nsyms = 0;
int ntokens = 1;
int nvars = 0;
short *token_translations = NULL;
int start_symbol = 0;