diff options
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index 1eb67bf2f..9e2995dd6 100644 --- a/config.h.in +++ b/config.h.in @@ -205,6 +205,9 @@ #define HASH_FUNCTION MUR #define HASH_USING_NO_STRICT_ALIASING #endif +/* Configure allocator */ +#define uthash_malloc(sz) g_slice_alloc(sz) +#define uthash_free(ptr,sz) g_slice_free1(sz, ptr) #define ETC_PREFIX "${ETC_PREFIX}" #define LOCALSTATES_PREFIX "${LOCALSTATES_PREFIX}" |