diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-07 18:50:54 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-07 18:50:54 +0000 |
commit | 98f49db325c55114341c32bdf83cfada771bd9d0 (patch) | |
tree | 0f2ad2f41ab1a152a64b7af64f2a550377c14d58 /gcc/gbl-ctors.h | |
parent | b6929d5321816a2f2d29676e6dffe3e54c1feee3 (diff) | |
download | gcc-98f49db325c55114341c32bdf83cfada771bd9d0.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67599 138bc75d-0d04-0410-961f-82ee72b054a4
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 9ba79f02ddc..2a56a9fb9fb 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); |