1 /* BEGIN INCLUDE FILE ... token.incl.pl1 */
 2 
 3 dcl       1 token                       based aligned,
 4           2 node_type                   bit(9) unaligned,
 5           2 type                        bit(9) unaligned,
 6           2 loc                         bit(18) unaligned,  /* symtab offset for identifiers, "p" flag for constants */
 7           2 declaration                 ptr unaligned,
 8           2 next                        ptr unaligned,
 9           2 size                        fixed(9),
10           2 string                      char(n refer(token.size));
11 
12 /* END INCLUDE FILE ... token.incl.pl1 */