blob: 0941e5ddf0024ef49113ca20707ea689ecd383ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <stdlib.h>
// Musl has an aligned_alloc routine, but that builds on top of standard malloc(). We are using dlmalloc, so
// can route to its implementation instead.
void * weak aligned_alloc(size_t alignment, size_t size)
{
void *ptr;
if ((alignment % sizeof(void *) != 0) || (size % alignment) != 0)
return 0;
int ret = posix_memalign(&ptr, alignment, size);
return (ret == 0) ? ptr : 0;
}
|