diff options
Diffstat (limited to 'compat_ohash.h')
-rw-r--r-- | compat_ohash.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compat_ohash.h b/compat_ohash.h index d07df18e..c5f81ec0 100644 --- a/compat_ohash.h +++ b/compat_ohash.h @@ -27,8 +27,8 @@ struct ohash_info { ptrdiff_t key_offset; void *data; /* user data */ - void *(*halloc)(size_t, void *); - void (*hfree)(void *, size_t, void *); + void *(*calloc)(size_t, size_t, void *); + void (*free)(void *, void *); void *(*alloc)(size_t, void *); }; |