1
2
3
4
5 dcl cc_info_ptr pointer;
6 dcl C_version_info char (160) init ("C Compiler Version 4.0, of June 1990") static options(constant);
7 dcl C_gen_number fixed bin init (4) static options(constant);
8
9
10 dcl MAX_LIB_INCL fixed bin init (10) static options (constant);
11
12 dcl 1 cc_info based (cc_info_ptr),
13 2 libraries (MAX_LIB_INCL),
14 3 library_pathname char (168),
15 3 library_pathname_length fixed bin (21),
16 2 include_files (MAX_LIB_INCL),
17 3 include_pathname char (168),
18 3 include_pathname_length fixed bin (21),
19 2 undefines (MAX_LIB_INCL),
20 3 undefine_name char (64),
21 3 undefine_name_length fixed bin (21),
22 2 defines (MAX_LIB_INCL),
23 3 define_name char (64),
24 3 define_name_length fixed bin (21);
25
26