-/* Import the definition of CORE, SHIFTS and REDUCTIONS. */
-# include "state.h"
-
-
-/* Compute how to make the finite state machine deterministic; find
- which rules need lookahead in each state, and which lookahead
- tokens they accept. */
-
-void lalr PARAMS ((void));
-
-
-/* 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.