1 /*        BEGIN INCLUDE FILE comp_error.incl.pl1  */
2 
3 dcl 1 error         aligned based (const.errblk_ptr), /* diagnostic error messages */
4       2 count       fixed bin,          /* count of errors logged */
5       2 next        fixed bin (35),     /* char offset for next message */
6       2 text        char (const.max_seg_chars - 400) unal; /* messages */
7 
8 /*        END INCLUDE FILE comp_error.incl.pl1    */