home *** CD-ROM | disk | FTP | other *** search
- /* $Log: cinit.c,v $
- * Revision 1.4 1992/04/01 21:51:32 budis
- * update copyright message for distrs.
- *
- * Revision 1.3 91/02/14 09:47:41 thomasn
- * include Log header in source
- * */
- /*********************************************************************
- (C) Copyright 1987-1992; Franklin L. DeRemer, Thomas J. Pennello,
- MetaWare Incorporated; Santa Cruz, CA 95060.
- This program is the unpublished property and trade secret of the above
- three. It is to be utilized solely under license from MetaWare and it
- is to be maintained on a confidential basis for internal company use
- only. The security and protection of the program is paramount to
- maintenance of the trade secret status. It is to be protected from
- disclosure to unauthorized parties, both within the Licensee company
- and outside, in a manner not less stringent than that utilized for Li-
- censee's own proprietary internal information. No copies of the
- Source or Object Code are to leave the premises of Licensee's business
- except in strict accordance with the license agreement signed by Li-
- censee with MetaWare.
- *********************************************************************/
-
- #include <stdlib.h>
- #include "init.h"
-
- static int argc;
- extern int __main(int argc, char *argv[]);
-
- void _cinit(){
- _mwinit_env_area();
- _mwcall_onentry_fcns();
- argc = _mwset_up_args(_mwargvp);
- exit(__main(argc, _mwargvp));
- }
-