diff options
author | Jim Meyering <jim@meyering.net> | 2003-07-18 07:10:53 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-07-18 07:10:53 +0000 |
commit | 45a5d9f023c151234c5b0a471483614ad020949f (patch) | |
tree | 34d129b7f65b59de3eca879a55041c5a7153e94d /lib | |
parent | 393c48ec794fdd61dc5572e0f923a04052f50ddd (diff) | |
download | coreutils-45a5d9f023c151234c5b0a471483614ad020949f.tar.xz |
Merge with gnulib. Use a single exit_failure variable rather
than a separate one for each module.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/xmalloc.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/xmalloc.c b/lib/xmalloc.c index a1bcbdf91..ead50393d 100644 --- a/lib/xmalloc.c +++ b/lib/xmalloc.c @@ -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. */ |