diff options
Diffstat (limited to 'src/memory.c')
-rw-r--r-- | src/memory.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/memory.c b/src/memory.c deleted file mode 100644 index 74694c14..00000000 --- a/src/memory.c +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright 2011-2021 David Robillard <d@drobilla.net> -// SPDX-License-Identifier: ISC - -#include "memory.h" - -#include "serd/memory.h" -#include "zix/allocator.h" - -SerdAllocator* -serd_default_allocator(void) -{ - /* Note that SerdAllocator is intentionally the same as ZixAllocator. It - only exists to avoid exposing the zix API in the public serd API, which - I'm not sure would be appropriate. */ - - return (SerdAllocator*)zix_default_allocator(); -} |