From 71c950bb749c3581ab389edfff9771cb06242e29 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 11 Jul 2021 20:47:51 -0400 Subject: Add SerdWorld for shared library state --- src/system.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/system.h') diff --git a/src/system.h b/src/system.h index 7dae6a96..944c8942 100644 --- a/src/system.h +++ b/src/system.h @@ -27,16 +27,18 @@ FILE* serd_fopen(const char* path, const char* mode); /// Allocate a buffer aligned to `alignment` bytes -SERD_MALLOC_FUNC void* +SERD_I_MALLOC_FUNC +void* serd_malloc_aligned(size_t alignment, size_t size); /// Allocate a zeroed buffer aligned to `alignment` bytes -SERD_MALLOC_FUNC +SERD_I_MALLOC_FUNC void* serd_calloc_aligned(size_t alignment, size_t size); /// Allocate an aligned buffer for I/O -SERD_MALLOC_FUNC void* +SERD_I_MALLOC_FUNC +void* serd_allocate_buffer(size_t size); /// Free a buffer allocated with an aligned allocation function -- cgit v1.2.1