-
-/* lalr() builds these data structures. */
-
-/* GOTO_MAP, FROM_STATE and TO_STATE -- record each shift transition
- which accepts a variable (a nonterminal).
-
- FROM_STATE[T] -- state number which a transition leads from.
- TO_STATE[T] -- state number it leads to.
-
- All the transitions that accept a particular variable are grouped
- together and GOTO_MAP[I - NTOKENS] is the index in FROM_STATE and
- TO_STATE of the first of them. */
-
-extern short *goto_map;
-extern short *from_state;
-extern short *to_state;
-
-/* CONSISTENT[S] is nonzero if no lookahead is needed to decide what
- to do in state S. */
-
-extern char *consistent;