]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Merge with gnulib. Use a single exit_failure variable rather
authorJim Meyering <jim@meyering.net>
Fri, 18 Jul 2003 07:10:53 +0000 (07:10 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 18 Jul 2003 07:10:53 +0000 (07:10 +0000)
than a separate one for each module.

lib/xmalloc.c

index a1bcbdf91d34ea268b70f4e1f4fda364bfaee9dc..ead50393d3485a251c8bb509987d894e7192f98f 100644 (file)
@@ -37,6 +37,7 @@ void free ();
 #define N_(msgid) msgid
 
 #include "error.h"
+#include "exitfail.h"
 #include "xalloc.h"
 
 #ifndef EXIT_FAILURE
@@ -53,10 +54,6 @@ void free ();
 "you must run the autoconf test for a GNU libc compatible realloc"
 #endif
 
-/* Exit value when the requested amount of memory is not available.
-   The caller may set it to some other value.  */
-int xalloc_exit_failure = EXIT_FAILURE;
-
 /* If non NULL, call this function when memory is exhausted. */
 void (*xalloc_fail_func) (void) = 0;
 
@@ -69,7 +66,7 @@ xalloc_die (void)
 {
   if (xalloc_fail_func)
     (*xalloc_fail_func) ();
-  error (xalloc_exit_failure, 0, "%s", _(xalloc_msg_memory_exhausted));
+  error (exit_failure, 0, "%s", _(xalloc_msg_memory_exhausted));
   /* The `noreturn' cannot be given to error, since it may return if
      its first argument is 0.  To help compilers understand the
      xalloc_die does terminate, call exit. */