X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fxmalloc.c;h=3adf5dda88f1c4f74683d2860d9d2e283775c8c7;hb=22c1c15d0a29a1b7ea75456abe3f7062f835c887;hp=a1bcbdf91d34ea268b70f4e1f4fda364bfaee9dc;hpb=68af56be3e061b97cf97150094bc50b0aa364cbb;p=gnulib.git diff --git a/lib/xmalloc.c b/lib/xmalloc.c index a1bcbdf91..3adf5dda8 100644 --- a/lib/xmalloc.c +++ b/lib/xmalloc.c @@ -21,27 +21,17 @@ # include #endif -#include - -#if STDC_HEADERS -# include -#else -void *calloc (); -void *malloc (); -void *realloc (); -void free (); -#endif +#include "xalloc.h" + +#include #include "gettext.h" #define _(msgid) gettext (msgid) #define N_(msgid) msgid #include "error.h" -#include "xalloc.h" - -#ifndef EXIT_FAILURE -# define EXIT_FAILURE 1 -#endif +#include "exit.h" +#include "exitfail.h" /* The following tests require AC_PREREQ(2.54). */ @@ -53,10 +43,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 +55,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. */