1 /* ----------BEGIN INCLUDE FILE dm_cm_position_flags.incl.pl1---------- */
 2 
 3 /* Written by Matthew Pierret 12/15/82.
 4 Modified:
 5 03/29/83 by Matthew Pierret: Changed RELATIVE_... to correctly be "0"b.
 6 */
 7 
 8      dcl     ABSOLUTE_POSITION_FROM_BEGINNING_OF_COLLECTION init ("1"b) bit (1) aligned internal static options (constant);
 9 
10      dcl     ABSOLUTE_POSITION_FROM_END_OF_COLLECTION init ("1"b) bit (1) aligned internal static options (constant);
11 
12      dcl     RELATIVE_POSITION_FROM_SPECIFIED_ELEMENT init ("0"b) bit (1) aligned internal static options (constant);
13 
14 /* ----------END INCLUDE FILE dm_cm_position_flags.incl.pl1---------- */