aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wmem/wmem_allocator.h
diff options
context:
space:
mode:
Diffstat (limited to 'epan/wmem/wmem_allocator.h')
-rw-r--r--epan/wmem/wmem_allocator.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/wmem/wmem_allocator.h b/epan/wmem/wmem_allocator.h
index e131a30f8e..530663a23d 100644
--- a/epan/wmem/wmem_allocator.h
+++ b/epan/wmem/wmem_allocator.h
@@ -37,9 +37,9 @@ struct _wmem_user_cb_container_t;
* on this structure */
struct _wmem_allocator_t {
/* Consumer functions */
- void *(*alloc)(void *private_data, const size_t size);
- void (*free)(void *private_data, void *ptr);
- void *(*realloc)(void *private_data, void *ptr, const size_t size);
+ void *(*walloc)(void *private_data, const size_t size);
+ void (*wfree)(void *private_data, void *ptr);
+ void *(*wrealloc)(void *private_data, void *ptr, const size_t size);
/* Producer/Manager functions */
void (*free_all)(void *private_data);