about summary refs log tree commit diff
path: root/src/malloc.c
diff options
context:
space:
mode:
authorNakidai <nakidai@disroot.org>2024-11-24 19:48:43 +0300
committerNakidai <nakidai@disroot.org>2024-11-24 19:48:43 +0300
commit786472f41bc2a7db3bd271fccaaff57fc74b6989 (patch)
treec4fa78bb53ce9fe91d0eefdc804217e365241cb9 /src/malloc.c
parenta9ae6f4844ae4ac0baa78605157a111aad9358b8 (diff)
downloadlibhttpc-786472f41bc2a7db3bd271fccaaff57fc74b6989.tar.gz
libhttpc-786472f41bc2a7db3bd271fccaaff57fc74b6989.zip
Add LibHTTPC_free
Diffstat (limited to 'src/malloc.c')
-rw-r--r--src/malloc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/malloc.c b/src/malloc.c
index a654e31..6287e4a 100644
--- a/src/malloc.c
+++ b/src/malloc.c
@@ -1,5 +1,6 @@
 #include "libhttpc.h"
 
 
-LibHTTPC_Malloc *LibHTTPC_malloc = NULL;
-LibHTTPC_Realloc *LibHTTPC_realloc = NULL;
+LibHTTPC_Malloc    *LibHTTPC_malloc     = NULL;
+LibHTTPC_Realloc   *LibHTTPC_realloc    = NULL;
+LibHTTPC_Free      *LibHTTPC_free       = NULL;