1 /* Begin include file lalr_object_def.incl.pl1 */
 2 
 3 /* format: style4,indattr,idind30 */
 4 dcl  lalr_object_def_ptr           pointer;
 5 dcl  1 lalr_object_def             aligned based (lalr_object_def_ptr),
 6        2 version                   char (8) aligned,
 7        2 terminals_hash_list_offset fixed bin,
 8        2 terminals_list_offset     fixed bin,
 9        2 terminal_characters_offset fixed bin,
10        2 dpda_offset               fixed bin,
11        2 skip_offset               fixed bin,
12        2 standard_prelude_offset   fixed bin,
13        2 production_names_offset   fixed bin,
14        2 variables_list_offset     fixed bin,
15        2 variable_characters_offset fixed bin,
16        2 semantics_vector_offset   fixed bin;
17 
18 dcl  lalr_object_def_version_1     char (8) aligned internal static options (constant) init ("lpio001");
19 
20 /* End include file lalr_object_def.incl.pl1 */