From: Ulrich Drepper Date: Mon, 30 May 2011 00:41:09 +0000 (-0400) Subject: Missed one malloc hook variable X-Git-Tag: glibc-2.14~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0810a11e5302ce0556b32238dc1b5c6f634dfe45;p=thirdparty%2Fglibc.git Missed one malloc hook variable --- diff --git a/malloc/malloc.h b/malloc/malloc.h index 2bdece0b49c..5fc7a53effa 100644 --- a/malloc/malloc.h +++ b/malloc/malloc.h @@ -164,7 +164,7 @@ extern int malloc_set_state (void *__ptr) __THROW; /* Called once when malloc is initialized; redefining this variable in the application provides the preferred way to set up the hook pointers. */ -extern void (*__malloc_initialize_hook) (void); +extern void (*__MALLOC_HOOK_VOLATILE __malloc_initialize_hook) (void); /* Hooks for debugging and user-defined versions. */ extern void (*__MALLOC_HOOK_VOLATILE __free_hook) (void *__ptr, __const __malloc_ptr_t);