1 /* Begin include file: io_error_info.incl.pl1  BIM April 1981 */
 2 /* This depends on condition_info_header.incl.pl1 */
 3 /* format: style2 */
 4 
 5      declare   io_error_info_ptr    pointer;
 6      declare 1 io_error_info        aligned based (io_error_info_ptr),
 7                2 header             aligned like condition_info_header,
 8                2 switch_name        char (32),
 9                2 status,
10                  3 code             fixed bin (35),
11                  3 IOS_status_bits  bit (36);               /* for compatability */
12 
13 /* end include file, io_error_info.incl.pl1 */