+goto_number_t *goto_map = NULL;
+static goto_number_t ngotos = 0;
+state_number_t *from_state = NULL;
+state_number_t *to_state = NULL;
+
+/* Linked list of goto numbers. */
+typedef struct goto_list_s
+{
+ struct goto_list_s *next;
+ goto_number_t value;
+} goto_list_t;
+
+