summaryrefslogtreecommitdiff
path: root/src/malloc/aligned_alloc.c
blob: b6143f303f673a4e1fcf5f6a91665e4952455abc (plain) (blame)
1
2
3
4
5
6
7
#include <stdlib.h>
#include "malloc_impl.h"

void *aligned_alloc(size_t align, size_t len)
{
	return __memalign(align, len);
}