Revert part of rev 1.3 -- we need the calls to _init and _fini.

This commit is contained in:
David E. O'Brien 2002-03-16 20:38:46 +00:00
parent fd787c8c7a
commit 917356f5f6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=92447

View File

@ -114,15 +114,11 @@ _start(char **ap,
#ifdef GCRT
atexit(_mcleanup);
#endif
#if 0
atexit(_fini);
#endif
#ifdef GCRT
monstartup(&eprol, &etext);
#endif
#if 0
_init();
#endif
exit( main(argc, argv, env) );
}