summaryrefslogtreecommitdiff
path: root/Zend/zend_alloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/zend_alloc.h')
-rw-r--r--Zend/zend_alloc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_alloc.h b/Zend/zend_alloc.h
index bdc051887c..b55c6bea7b 100644
--- a/Zend/zend_alloc.h
+++ b/Zend/zend_alloc.h
@@ -234,9 +234,9 @@ ZEND_API zend_mm_heap *zend_mm_set_heap(zend_mm_heap *new_heap TSRMLS_DC);
ZEND_API zend_mm_storage *zend_mm_get_storage(zend_mm_heap *heap);
ZEND_API void zend_mm_set_custom_handlers(zend_mm_heap *heap,
- void* (*malloc)(size_t),
- void (*free)(void*),
- void* (realloc)(void*, size_t));
+ void* (*_malloc)(size_t),
+ void (*_free)(void*),
+ void* (*_realloc)(void*, size_t));
#endif