diff options
Diffstat (limited to 'src/string.c')
-rw-r--r-- | src/string.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/string.c b/src/string.c index ed3149d0..46f8ff9a 100644 --- a/src/string.c +++ b/src/string.c @@ -1,15 +1,15 @@ // Copyright 2011-2020 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC +#include "memory.h" + #include "serd/memory.h" #include "serd/status.h" -#include <stdlib.h> - void -serd_free(void* const ptr) +serd_free(SerdAllocator* const allocator, void* const ptr) { - free(ptr); + serd_afree(allocator, ptr); } const char* |