summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--defines.h4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index cd8b62e63..c25a61f9a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,9 @@
3 Dave Dykstra <dwd@bell-labs.com> 3 Dave Dykstra <dwd@bell-labs.com>
4 - (stevesk) fix --with-zlib= 4 - (stevesk) fix --with-zlib=
5 - (djm) Use case statements in autoconf to clean up some tests 5 - (djm) Use case statements in autoconf to clean up some tests
6 - (bal) reverted out of 5/2001 change to atexit(). I assume I
7 did it to handle SonyOS. If that is the case than we will
8 do a special case for them.
6 9
720020122 1020020122
8 - (djm) autoconf hacking: 11 - (djm) autoconf hacking:
@@ -7384,4 +7387,4 @@
7384 - Wrote replacements for strlcpy and mkdtemp 7387 - Wrote replacements for strlcpy and mkdtemp
7385 - Released 1.0pre1 7388 - Released 1.0pre1
7386 7389
7387$Id: ChangeLog,v 1.1792 2002/01/23 00:20:59 djm Exp $ 7390$Id: ChangeLog,v 1.1793 2002/01/23 06:54:30 mouring Exp $
diff --git a/defines.h b/defines.h
index 721b88d47..9236962ba 100644
--- a/defines.h
+++ b/defines.h
@@ -1,7 +1,7 @@
1#ifndef _DEFINES_H 1#ifndef _DEFINES_H
2#define _DEFINES_H 2#define _DEFINES_H
3 3
4/* $Id: defines.h,v 1.77 2002/01/08 21:59:07 stevesk Exp $ */ 4/* $Id: defines.h,v 1.78 2002/01/23 06:54:31 mouring Exp $ */
5 5
6/* Necessary headers */ 6/* Necessary headers */
7 7
@@ -446,7 +446,7 @@ struct winsize {
446#endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */ 446#endif /* !defined(HAVE_MEMMOVE) && defined(HAVE_BCOPY) */
447 447
448#if !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT) 448#if !defined(HAVE_ATEXIT) && defined(HAVE_ON_EXIT)
449# define atexit(a, NULL) on_exit(a, NULL) 449# define atexit(a) on_exit(a, NULL)
450#else 450#else
451# if defined(HAVE_XATEXIT) 451# if defined(HAVE_XATEXIT)
452# define atexit(a) xatexit(a) 452# define atexit(a) xatexit(a)