From 1353117ffc5a26709b1a00995cc6be49e1eab7ab Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Tue, 7 Feb 2023 16:20:08 +0100 Subject: Small adjustment for i_allocator --- include/stc/priv/template.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/stc/priv/template.h b/include/stc/priv/template.h index 79627ff3..dd770839 100644 --- a/include/stc/priv/template.h +++ b/include/stc/priv/template.h @@ -49,13 +49,13 @@ #endif #ifndef i_allocator - #define i_allocator c_ + #define i_allocator c #endif #ifndef i_malloc - #define i_malloc c_PASTE(i_allocator, malloc) - #define i_calloc c_PASTE(i_allocator, calloc) - #define i_realloc c_PASTE(i_allocator, realloc) - #define i_free c_PASTE(i_allocator, free) + #define i_malloc c_PASTE(i_allocator, _malloc) + #define i_calloc c_PASTE(i_allocator, _calloc) + #define i_realloc c_PASTE(i_allocator, _realloc) + #define i_free c_PASTE(i_allocator, _free) #endif #if !(defined i_key || defined i_key_str || defined i_key_ssv || \ -- cgit v1.2.3