summaryrefslogtreecommitdiffstats
path: root/defines.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-01-23 06:54:30 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-01-23 06:54:30 +0000
commitfa9b641eb069ec8a89315a4cee4c585b91474afe (patch)
tree137b56bb13377f65691abb06b7425afbd56d2b03 /defines.h
parente996d72e025c7663df6fe985a9266eb45df08459 (diff)
- (bal) reverted out of 5/2001 change to atexit(). I assume I
did it to handle SonyOS. If that is the case than we will do a special case for them.
Diffstat (limited to 'defines.h')
-rw-r--r--defines.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/defines.h b/defines.h
index 721b88d4..9236962b 100644
--- a/defines.h
+++ b/defines.h
@@ -1,7 +1,7 @@
#ifndef _DEFINES_H
#define _DEFINES_H
-/* $Id: defines.h,v 1.77 2002/01/08 21:59:07 stevesk Exp $ */
+/* $Id: defines.h,v 1.78 2002/01/23 06:54:31 mouring Exp $ */
/* Necessary headers */
@@ -446,7 +446,7 @@ struct winsize {
#endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
#if !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT)
-# define atexit(a, NULL) on_exit(a, NULL)
+# define atexit(a) on_exit(a, NULL)
#else
# if defined(HAVE_XATEXIT)
# define atexit(a) xatexit(a)