From d983d652e88d45187f71813b7d4dd30b635bf79a Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Tue, 21 Jul 1992 18:49:45 +0000 Subject: entered into RCS From-SVN: r1654 --- gcc/gbl-ctors.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gcc/gbl-ctors.h') diff --git a/gcc/gbl-ctors.h b/gcc/gbl-ctors.h index d99f622..13048ce 100644 --- a/gcc/gbl-ctors.h +++ b/gcc/gbl-ctors.h @@ -31,13 +31,13 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ Note that this file should only be compiled with GCC. */ -#ifdef sun -extern void on_exit (void*, void*); -#define ON_EXIT(FUNC,ARG) on_exit ((FUNC), (ARG)) -#else #ifdef HAVE_ATEXIT extern void atexit (void (*) (void)); #define ON_EXIT(FUNC,ARG) atexit ((FUNC)) +#else +#ifdef sun +extern void on_exit (void*, void*); +#define ON_EXIT(FUNC,ARG) on_exit ((FUNC), (ARG)) #endif #endif -- cgit v1.1