diff options
author | Andreas Jaeger <aj@suse.de> | 2003-06-07 20:50:54 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-06-07 20:50:54 +0200 |
commit | 5145a02e5ddfd75dfb212e5ab165b21cec63fe18 (patch) | |
tree | 0f2ad2f41ab1a152a64b7af64f2a550377c14d58 /gcc/gbl-ctors.h | |
parent | 39072dc8df583a5c53fa77203f560b4b359fab56 (diff) | |
download | gcc-5145a02e5ddfd75dfb212e5ab165b21cec63fe18.zip gcc-5145a02e5ddfd75dfb212e5ab165b21cec63fe18.tar.gz gcc-5145a02e5ddfd75dfb212e5ab165b21cec63fe18.tar.bz2 |
mklibgcc.in (lib2funcs): Remove _exit.
* mklibgcc.in (lib2funcs): Remove _exit.
* libgcc2.c: Remove L_exit.
* gbl-ctors.h: Remove declarations dependend on NEED_ATEXIT.
* system.h: Poison NEED_ATEXIT, ON_EXIT, EXIT_BODY.
* doc/tm.texi (Misc): Remove NEED_ATEXIT, ON_EXIT, EXIT_BODY.
From-SVN: r67599
Diffstat (limited to 'gcc/gbl-ctors.h')
-rw-r--r-- | gcc/gbl-ctors.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/gbl-ctors.h b/gcc/gbl-ctors.h index 9ba79f0..2a56a9f 100644 --- a/gcc/gbl-ctors.h +++ b/gcc/gbl-ctors.h @@ -2,7 +2,7 @@ for getting g++ file-scope static objects constructed. This file will get included either by libgcc2.c (for systems that don't support a .init section) or by crtstuff.c (for those that do). - Copyright (C) 1991, 1995, 1996, 1998, 1999, 2000 + Copyright (C) 1991, 1995, 1996, 1998, 1999, 2000, 2003 Free Software Foundation, Inc. Contributed by Ron Guilmette (rfg@segfault.us.com) @@ -38,10 +38,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA Note that this file should only be compiled with GCC. */ -#ifdef NEED_ATEXIT -extern int atexit (void (*) (void)); -#endif - /* Declare a pointer to void function type. */ typedef void (*func_ptr) (void); |