diff options
Diffstat (limited to 'src/allocator.c')
-rw-r--r-- | src/allocator.c | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/src/allocator.c b/src/allocator.c index 6c18804..b1453b4 100644 --- a/src/allocator.c +++ b/src/allocator.c @@ -1,30 +1,27 @@ // Copyright 2011-2021 David Robillard <d@drobilla.net> // SPDX-License-Identifier: ISC -#include "zix/allocator.h" - -#include "zix/attributes.h" +#include <zix/allocator.h> #include "zix_config.h" +#include <zix/attributes.h> + #ifdef _WIN32 -# define WIN32_LEAN_AND_MEAN # include <malloc.h> # include <windows.h> #endif #include <stdlib.h> -ZIX_MALLOC_FUNC -static void* +ZIX_MALLOC_FUNC static void* zix_default_malloc(ZixAllocator* const allocator, const size_t size) { (void)allocator; return malloc(size); } -ZIX_MALLOC_FUNC -static void* +ZIX_MALLOC_FUNC static void* zix_default_calloc(ZixAllocator* const allocator, const size_t nmemb, const size_t size) @@ -49,8 +46,7 @@ zix_default_free(ZixAllocator* const allocator, void* const ptr) free(ptr); } -ZIX_MALLOC_FUNC -static void* +ZIX_MALLOC_FUNC static void* zix_default_aligned_alloc(ZixAllocator* const allocator, const size_t alignment, const size_t size) |