diff options
Diffstat (limited to 'src/system.c')
-rw-r--r-- | src/system.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/system.c b/src/system.c index fbff8806..a371e548 100644 --- a/src/system.c +++ b/src/system.c @@ -34,10 +34,6 @@ #include <stdlib.h> #include <string.h> -#define SERD_HAVE_ALIGNED_ALLOCATION \ - defined(_WIN32) || defined(HAVE_ALIGNED_ALLOC) || \ - defined(HAVE_POSIX_MEMALIGN) - FILE* serd_fopen(const char* path, const char* mode) { @@ -71,21 +67,6 @@ serd_malloc_aligned(const size_t alignment, const size_t size) } void* -serd_calloc_aligned(const size_t alignment, const size_t size) -{ -#ifdef SERD_HAVE_ALIGNED_ALLOCATION - void* const ptr = serd_malloc_aligned(alignment, size); - if (ptr) { - memset(ptr, 0, size); - } - return ptr; -#else - (void)alignment; - return calloc(1, size); -#endif -} - -void* serd_allocate_buffer(const size_t size) { return serd_malloc_aligned(SERD_PAGE_SIZE, size); |