diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-08-25 04:57:01 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-08-25 04:57:01 +0000 |
commit | e3c0c189b7566a1ffcd8d11821a44c6e0e9e64d4 (patch) | |
tree | 1ab673dc529753cff1b28597ca41dc226256a253 /libc/stdlib/malloc-standard/malloc.h | |
parent | 22e48d07b568b367f2293bc305924863743de736 (diff) |
fix from psm: makes use of the malloc debug option in malloc-standard as well
Diffstat (limited to 'libc/stdlib/malloc-standard/malloc.h')
-rw-r--r-- | libc/stdlib/malloc-standard/malloc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdlib/malloc-standard/malloc.h b/libc/stdlib/malloc-standard/malloc.h index 453d69736..556aef4d7 100644 --- a/libc/stdlib/malloc-standard/malloc.h +++ b/libc/stdlib/malloc-standard/malloc.h @@ -925,7 +925,7 @@ extern struct malloc_state __malloc_state; /* never directly referenced */ At most one "call" to get_malloc_state is made per invocation of the public versions of malloc and free, but other routines that in turn invoke malloc and/or free may call more then once. - Also, it is called in check* routines if __MALLOC_DEBUGGING is set. + Also, it is called in check* routines if __UCLIBC_MALLOC_DEBUGGING__ is set. */ #define get_malloc_state() (&(__malloc_state)) @@ -935,7 +935,7 @@ void __malloc_consolidate(mstate) attribute_hidden; /* Debugging support */ -#if ! __MALLOC_DEBUGGING +#ifndef __UCLIBC_MALLOC_DEBUGGING__ #define check_chunk(P) #define check_free_chunk(P) |