From b55813dc0b4a6a1f70c0f8d5f0512c8cebb4a5ba Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sat, 16 Dec 2006 16:34:04 +0000 Subject: [PATCH] We do properly check for malloc and realloc. --- lib/xmalloc.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/xmalloc.c b/lib/xmalloc.c index e7541bdd..d02f41b9 100644 --- a/lib/xmalloc.c +++ b/lib/xmalloc.c @@ -46,14 +46,6 @@ void *xcalloc (size_t n, size_t s); void *xrealloc (void *p, size_t n); #endif -#ifndef HAVE_DONE_WORKING_MALLOC_CHECK -#error you must run the autoconf test for a properly working malloc -- see malloc.m4 -#endif - -#ifndef HAVE_DONE_WORKING_REALLOC_CHECK -#error you must run the autoconf test for a properly working realloc -- see realloc.m4 -#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; -- 2.20.1