diff options
Diffstat (limited to 'libc/bionic/dlmalloc.h')
-rw-r--r-- | libc/bionic/dlmalloc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/bionic/dlmalloc.h b/libc/bionic/dlmalloc.h index e5f7d4a..1b642d2 100644 --- a/libc/bionic/dlmalloc.h +++ b/libc/bionic/dlmalloc.h @@ -1,14 +1,14 @@ /* Default header file for malloc-2.8.x, written by Doug Lea and released to the public domain, as explained at - http://creativecommons.org/licenses/publicdomain. - + http://creativecommons.org/licenses/publicdomain. + last update: Mon Aug 15 08:55:52 2005 Doug Lea (dl at gee) This header is for ANSI C/C++ only. You can set any of the following #defines before including: - * If USE_DL_PREFIX is defined, it is assumed that malloc.c + * If USE_DL_PREFIX is defined, it is assumed that malloc.c was also compiled with this option, so all routines have names starting with "dl". @@ -34,7 +34,7 @@ extern "C" { #if !ONLY_MSPACES /* Check an additional macro for the five primary functions */ -#if !defined(USE_DL_PREFIX) || !defined(MALLOC_LEAK_CHECK) +#if !defined(USE_DL_PREFIX) #define dlcalloc calloc #define dlfree free #define dlmalloc malloc |