1 
 2 /* BEGIN INCLUDE FILE ...   cobol_relinfo.incl.pl1 */
 3 /* Last modified July 1, 1974 by ORN */
 4 
 5 dcl relptr ptr;
 6 dcl 1 relinfo aligned based(relptr),
 7      2 decl_vers fixed bin,
 8      2 n_bits fixed bin,
 9      2 relbits bit(0 refer (relinfo.n_bits)) aligned;
10 
11 /*
12 1) decl_vers        is the version number of the
13                     structure (initialized to 2).
14 
15 2) n_bits           is the length (in bits) of the string
16                     of relocation bits.
17 
18 3) relbits          is the string of relocation bits.
19 */
20 
21 /* END INCLUDE FILE ...   cobol_relinfo.incl.pl1 */
22