1 /* BEGIN INCLUDE FILE mrds_dsm_rel_names_ext.incl.pl1 -- nsd 81/01/12 */ 2 3 /* 4 This include file is the user interface for obtaining a list of 5 the submodel relation names. 6 */ 7 8 dcl 1 dsm_rel_names_ext based (drel_ptr), 9 2 nrels fixed bin, 10 2 relation (nrels_alloc refer (dsm_rel_names_ext.nrels)) char (64); 11 12 dcl nrels_alloc fixed bin; 13 14 dcl drel_ptr ptr; 15 16 /* END INCLUDE FILE mrds_dsm_rel_names_ext.incl.pl1 */ 17