//jobname JOB .... <== VERIFY //* //* Copyright (c) 1996, SAS Institute Inc. //* Unpublished - All Rights Reserved //* //* NAME: LC370CLG //* //* PURPOSE: JCL to compile, link, and execute a SAS/C sample //* program. Verify the statements indicated by the //* "<== VERIFY", have been customized for the local //* environment. //* //***************************************************************** //* If the sample program requires any compile, link, or execute //* parameters, uncomment the line(s) below, and add a //* continuation character "," on the EXEC statement. //***************************************************************** //step EXEC PROC=LC370CLG <== VERIFY //* PARM.C='compiler options', //* PARM.LKED='link-edit options', //* PARM.GO='run-time options' //C.SYSIN DD DISP=SHR,DSN=prefix.SAMPLE.C(member) <== VERIFY //LKED.SYSLMOD DD DISP=SHR,DSN=your.load.library(member) <== VERIFY //* //*GO.ddname DD DISP=SHR,DSN=runtime.dataset.name <== VERIFY //*