From: Bruno Haible Date: Thu, 21 Nov 2002 19:16:29 +0000 (+0000) Subject: Comment tweaks. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b87e4e1e7c0de8232ad0e6ba9b7b0952b3bfc4e;p=pspp Comment tweaks. --- diff --git a/lib/ChangeLog b/lib/ChangeLog index 8f8b56a5b3..c196a1b40e 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,8 @@ +2002-11-21 Bruno Haible + + * xmalloc.c: Change compile-time error message. Add comment about + required autoconf version. + 2002-11-21 Jim Meyering * strdup.c (strdup): Tweak comment and initial #if/#include. 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.