diff options
| author | Nakidai <nakidai@disroot.org> | 2024-11-24 19:48:43 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2024-11-24 19:48:43 +0300 |
| commit | 786472f41bc2a7db3bd271fccaaff57fc74b6989 (patch) | |
| tree | c4fa78bb53ce9fe91d0eefdc804217e365241cb9 /src/malloc.c | |
| parent | a9ae6f4844ae4ac0baa78605157a111aad9358b8 (diff) | |
| download | libhttpc-786472f41bc2a7db3bd271fccaaff57fc74b6989.tar.gz libhttpc-786472f41bc2a7db3bd271fccaaff57fc74b6989.zip | |
Add LibHTTPC_free
Diffstat (limited to 'src/malloc.c')
| -rw-r--r-- | src/malloc.c | 5 |
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; |