diff options
author | Bruno Haible <bruno@clisp.org> | 2002-11-21 19:16:29 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2002-11-21 19:16:29 +0000 |
commit | 9b87e4e1e7c0de8232ad0e6ba9b7b0952b3bfc4e (patch) | |
tree | 22d5b932ebdb7aa905787e89d56bb38ff1771340 /lib/xmalloc.c | |
parent | c778cfa6e45ec889e3d04b0d947dabd69a357b92 (diff) | |
download | gnulib-9b87e4e1e7c0de8232ad0e6ba9b7b0952b3bfc4e.tar.gz |
Comment tweaks.
Diffstat (limited to 'lib/xmalloc.c')
-rw-r--r-- | lib/xmalloc.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/xmalloc.c b/lib/xmalloc.c index 6fab82909e..3affee7a9a 100644 --- a/lib/xmalloc.c +++ b/lib/xmalloc.c @@ -41,12 +41,14 @@ void free (); # define EXIT_FAILURE 1 #endif +/* The following tests require AC_PREREQ(2.54). */ + #ifndef HAVE_MALLOC -"you must run the autoconf test for a properly working malloc" +"you must run the autoconf test for a GNU libc compatible malloc" #endif #ifndef HAVE_REALLOC -"you must run the autoconf test for a properly working realloc" +"you must run the autoconf test for a GNU libc compatible realloc" #endif /* Exit value when the requested amount of memory is not available. |