summaryrefslogtreecommitdiff
path: root/src/malloc/posix_memalign.c
blob: ad4d8f473015e378ad1025363cd68507ec539f18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#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;
}