/************************************************************************/ /* */ /* Intel Corporation Proprietary Information */ /* */ /* This source is supplied under the terms of a license */ /* agreement or non-dislosure statement with the Intel Corporation */ /* and may not be copied nor disclosed except in accordance with the */ /* terms of that agreement. */ /* */ /************************************************************************/ /* */ /* This source file is a sample start-up code. This code can be */ /* tailored differently according to the needs of the user, and the */ /* environment under which the application will run. */ /* */ /************************************************************************/ cstart: do; /************************************************************************/ /* Declaration of the main() procedure */ /************************************************************************/ main: procedure external; end; call main; /* Call the main() procedure */ end cstart;