
  TYPE
    llt$section_ordinal = 0 .. llc$max_section_ordinal,
    llt$section_offset = 0 .. llc$max_section_offset,
    llt$section_length = 0 .. llc$max_section_length,
    llt$section_length_in_bits = 0 .. (llc$max_section_length *
      llc$bits_per_byte),
    llt$section_address_range = - (llc$max_section_offset + 1) ..
      llc$max_section_offset;

  CONST
    llc$max_section_ordinal = 0ffff(16),
    llc$max_section_offset = 7fffffff(16),
*IF $true(osv$unix)
    llc$max_section_length = 0fffffff(16),
*ELSE
    llc$max_section_length = llc$max_section_offset + 1,
*IFEND
    llc$bits_per_byte = 8;
