From 917356f5f68083d3eda1b01929e8b2ab68e69c92 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Sat, 16 Mar 2002 20:38:46 +0000 Subject: [PATCH] Revert part of rev 1.3 -- we need the calls to _init and _fini. --- lib/csu/sparc64/crt1.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/csu/sparc64/crt1.c b/lib/csu/sparc64/crt1.c index 23dc06260c15..0c203838bbc3 100644 --- a/lib/csu/sparc64/crt1.c +++ b/lib/csu/sparc64/crt1.c @@ -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) ); }