1 /* BEGIN INCLUDE FILE ... malformed_list_template.incl.pl1 */ 2 3 /* Created: 11/27/84 by Michael Mabey */ 4 5 declare template_info_ptr pointer; 6 7 declare 01 template_info 8 aligned based (template_info_ptr), 9 02 header like condition_info_header, 10 02 version fixed bin (35), /* the version number */ 11 02 variable_p ptr, /* beginning of initialized variable */ 12 02 variable_end_p ptr, /* last initialized bit */ 13 02 template_p ptr, /* beginning of the list template */ 14 02 template_error_p 15 ptr; /* template entry that contains the error. */ 16 17 /* END INCLUDE FILE ... malformed_list_template.incl.pl1 */