summaryrefslogtreecommitdiff
path: root/malloc/malloc.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@gmail.com>2011-05-29 20:41:09 -0400
committerUlrich Drepper <drepper@gmail.com>2011-05-29 20:41:09 -0400
commit0810a11e5302ce0556b32238dc1b5c6f634dfe45 (patch)
tree6fa37878b20484a137eb194ed0fc4e5175e68da4 /malloc/malloc.h
parentcf6bbbd701380accba8f709cf88b7bb160131e32 (diff)
Missed one malloc hook variable
Diffstat (limited to 'malloc/malloc.h')
-rw-r--r--malloc/malloc.h2
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);