]> git.cworth.org Git - tar/blobdiff - gnu/xmalloc.c
Imported Upstream version 1.24
[tar] / gnu / xmalloc.c
index 99d5bf4653cc3c8908094f24cb16fda30ea43705..1ec5f88eee77c0e540c7fbafa1f7c1c4b4e2ef49 100644 (file)
@@ -32,8 +32,8 @@
 
 /* 1 if calloc is known to be compatible with GNU calloc.  This
    matters if we are not also using the calloc module, which defines
-   HAVE_CALLOC and supports the GNU API even on non-GNU platforms.  */
-#if defined HAVE_CALLOC || defined __GLIBC__
+   HAVE_CALLOC_GNU and supports the GNU API even on non-GNU platforms.  */
+#if defined HAVE_CALLOC_GNU || defined __GLIBC__
 enum { HAVE_GNU_CALLOC = 1 };
 #else
 enum { HAVE_GNU_CALLOC = 0 };