diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-05-29 20:41:09 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-05-29 20:41:09 -0400 |
commit | 0810a11e5302ce0556b32238dc1b5c6f634dfe45 (patch) | |
tree | 6fa37878b20484a137eb194ed0fc4e5175e68da4 /malloc/malloc.h | |
parent | cf6bbbd701380accba8f709cf88b7bb160131e32 (diff) | |
download | glibc-0810a11e5302ce0556b32238dc1b5c6f634dfe45.tar.gz glibc-0810a11e5302ce0556b32238dc1b5c6f634dfe45.tar.xz glibc-0810a11e5302ce0556b32238dc1b5c6f634dfe45.zip |
Missed one malloc hook variable
Diffstat (limited to 'malloc/malloc.h')
-rw-r--r-- | malloc/malloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/malloc/malloc.h b/malloc/malloc.h index 2bdece0b49..5fc7a53eff 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); |