Disable __do_global_ctors for now

From-SVN: r11904
This commit is contained in:
Michael Meissner 1996-04-30 17:32:54 +00:00
parent 32806d5e19
commit e28b8ef8d1
1 changed files with 2 additions and 0 deletions

View File

@ -48,8 +48,10 @@ _start(int argc, char *argv[], char *envp[], void *auxp, void (*termfunc)())
if (termfunc)
atexit (termfunc);
#if 0
/* Call any global constructors and destructors. */
__do_global_ctors ();
#endif
/* Call the main program now */
ret = main (argc, argv, envp, auxp);