home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s220 / 5.ddi / CSTART.P96 < prev    next >
Encoding:
Text File  |  1988-12-01  |  1.4 KB  |  28 lines

  1. /************************************************************************/
  2. /*                                                                      */
  3. /*              Intel Corporation Proprietary Information               */
  4. /*                                                                      */
  5. /*       This  source  is  supplied  under  the  terms  of  a  license  */
  6. /*  agreement or  non-dislosure statement  with the  Intel Corporation  */
  7. /*  and may not be copied nor disclosed except in accordance with  the  */
  8. /*  terms of that agreement.                                            */
  9. /*                                                                      */
  10. /************************************************************************/
  11. /*                                    */
  12. /*    This source file is a sample start-up code. This code can be    */
  13. /*  tailored differently according to the needs of the user, and the    */
  14. /*  environment under which the application will run.            */
  15. /*                                    */
  16. /************************************************************************/
  17. cstart: do;
  18.  
  19. /************************************************************************/
  20. /*  Declaration of the main() procedure                                 */
  21. /************************************************************************/
  22. main: procedure external;
  23. end;
  24.  
  25.     call main;     /* Call the main() procedure  */
  26.  
  27. end cstart;
  28.