diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-03-04 23:45:47 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-03-04 23:45:47 +0000 |
commit | 2d724bcfbe0a7324159ecc4a58be9f7283166c1f (patch) | |
tree | f255be35a884f3738b12cbe595990118078d08e5 /gcc/gbl-ctors.h | |
parent | addb8ff3e017a7d97917aeb8704b4d1afa645907 (diff) | |
download | gcc-2d724bcfbe0a7324159ecc4a58be9f7283166c1f.tar.gz |
(HAVE_ATEXIT): Define if NEED_ATEXIT is defined.
(atexit): Use `int atexit' prototype also if NEED_ATEXIT is defined.
(on_exit): According to man on_exit on the Sun it returns int not void.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@11431 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gbl-ctors.h')
-rw-r--r-- | gcc/gbl-ctors.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gcc/gbl-ctors.h b/gcc/gbl-ctors.h index 537df5014d5..7c17aea2931 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 Free Software Foundation, Inc. + Copyright (C) 1991, 1995, 1996 Free Software Foundation, Inc. Contributed by Ron Guilmette (rfg@segfault.us.com) This file is part of GNU CC. @@ -30,8 +30,14 @@ Boston, MA 02111-1307, USA. */ Note that this file should only be compiled with GCC. */ +#ifdef NEED_ATEXIT +#ifndef HAVE_ATEXIT +#define HAVE_ATEXIT 1 /* Take it from libgcc2.c */ +#endif +#endif + #ifdef HAVE_ATEXIT -#ifdef WINNT +#if defined (WINNT) || defined (NEED_ATEXIT) extern int atexit (void (*) (void)); #else extern void atexit (void (*) (void)); @@ -39,7 +45,7 @@ extern void atexit (void (*) (void)); #define ON_EXIT(FUNC,ARG) atexit ((FUNC)) #else #ifdef sun -extern void on_exit (void*, void*); +extern int on_exit (void*, void*); /* The man page says it returns int. */ #define ON_EXIT(FUNC,ARG) on_exit ((FUNC), (ARG)) #endif #endif |