summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-11-03 15:19:20 +0000
committerJim Meyering <jim@meyering.net>1997-11-03 15:19:20 +0000
commita8da87911ca012a74ac96eb9be69028163f4adbc (patch)
tree5f95a95fc73fb58c15b343f0d3a39d3e193c2312 /lib
parentcbd4a8af0f0379a127b96aaca7dbb77513bc7b58 (diff)
downloadcoreutils-a8da87911ca012a74ac96eb9be69028163f4adbc.tar.xz
make sure autoconf tests have been run
Diffstat (limited to 'lib')
-rw-r--r--lib/xmalloc.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/xmalloc.c b/lib/xmalloc.c
index e204ae47f..d2996a060 100644
--- a/lib/xmalloc.c
+++ b/lib/xmalloc.c
@@ -54,6 +54,13 @@ void *xcalloc (size_t n, size_t s);
void *xrealloc (void *p, size_t n);
#endif
+#ifndef HAVE_DONE_WORKING_MALLOC_CHECK
+you must run the autoconf test for a properly working malloc -- see malloc.m4
+#endif
+
+#ifndef HAVE_DONE_WORKING_REALLOC_CHECK
+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. */