1 /* BEGIN INCLUDE FILE ... sdw.incl.pl1 ... MACRO ... For ADP conversion, 03/21/81 */
 2 
 3 dcl  sdwp pointer;
 4 
 5 dcl 1 sdwa (0: 1) based (sdwp) aligned like sdw;            /* SDW array (descriptor segment) */
 6 
 7 %if %target (L68) %then
 8 
 9      %include "sdw.l68";
10 
11      dcl 1 sdw aligned based (sdwp) like l68_sdw;
12 
13 %elseif %target (ADP) %then
14 
15      %include "sdw.adp";
16 
17      dcl 1 sdw aligned based (sdwp) like adp_sdw;
18 
19 %endif
20 
21 /* END INCLUDE FILE ... sdw.incl.pl1 */