summaryrefslogtreecommitdiff
path: root/src/malloc/posix_memalign.c
blob: 42cf27405a23d4b50dfb32df6bbba854aa0675ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <stdlib.h>
#include <errno.h>

int posix_memalign(void **res, size_t align, size_t len)
{
	void *mem = aligned_alloc(align, len);
	if (!mem) return errno;
	*res = mem;
	return 0;
}