We do properly check for malloc and realloc.
authorGuus Sliepen <guus@tinc-vpn.org>
Sat, 16 Dec 2006 16:34:04 +0000 (16:34 +0000)
committerGuus Sliepen <guus@tinc-vpn.org>
Sat, 16 Dec 2006 16:34:04 +0000 (16:34 +0000)
lib/xmalloc.c

index e7541bddeefb4f40f72eae67da7670a735470a1e..d02f41b9ad23a7e475b99ae84060d3399bd35c84 100644 (file)
@@ -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;