1 /* BEGIN INCLUDE FILE mrds_dsm_display_fils.incl.pl1 -- odf, October 1978 */ 2 3 dcl 1 dsm_display_fils based (dfil_ptr), /* user specified files foor display */ 4 2 nfils fixed bin, /* number of files */ 5 2 file (nfils_alloc refer (dsm_display_fils.nfils)), /* file names */ 6 3 name char (30), 7 3 pad bit (18) unal; 8 9 dcl nfils_alloc fixed bin; 10 11 dcl dfil_ptr ptr; 12 13 /* END INCLUDE FILE mrds_dsm_display_fils.incl.pl1 */ 14