1 2 /* BEGIN INCLUDE FILE fm.incl.pl1 4/08/75 B. Greenberg, for NSS */ 3 4 /* This ffle defines the format of a file map as it appears in a VTOC */ 5 6 dcl fmp ptr; 7 8 dcl 1 file_map aligned based (fmp), /* Outer level file map structure */ 9 2 fm (0 : 255) bit (18) unaligned; /* Address components of file map */ 10 11 /* END INCLUDE FILE fm.incl.pl1 */