summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--src/m4.h8
2 files changed, 3 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index a6d0d9cf..3002e784 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2005-05-06 Gary V. Vaughan <gary@gnu.org>
+ * src/m4.h (EXIT_SUCCESS, EXIT_FAILURE): Removed. These are
+ handled already by gnu/exit.h.
+
* configure.ac (gl_MODULES): Add assert to support a
--disable-assert configure time option for NDEBUG setting.
diff --git a/src/m4.h b/src/m4.h
index be8b3be0..dcf6e23f 100644
--- a/src/m4.h
+++ b/src/m4.h
@@ -73,14 +73,6 @@ long strtol ();
#endif /* STDC_HEADERS */
-/* Some systems do not define EXIT_*, even with STDC_HEADERS. */
-#ifndef EXIT_SUCCESS
-# define EXIT_SUCCESS 0
-#endif
-#ifndef EXIT_FAILURE
-# define EXIT_FAILURE 1
-#endif
-
#if HAVE_ERRNO_H
#include <errno.h>
#endif