this change eliminates the internal __memalign function and makes the memalign and posix_memalign functions completely independent of the malloc implementation, written portably in terms of aligned_alloc.
12 lines
234 B
C
12 lines
234 B
C
#include <stdlib.h>
|
|
#include <errno.h>
|
|
|
|
int posix_memalign(void **res, size_t align, size_t len)
|
|
{
|
|
if (align < sizeof(void *)) return EINVAL;
|
|
void *mem = aligned_alloc(align, len);
|
|
if (!mem) return errno;
|
|
*res = mem;
|
|
return 0;
|
|
}
|