summaryrefslogtreecommitdiff
path: root/src/stdlib/aligned_alloc.c
blob: 9b721a134d1542846370a7c25c37de2605ed1441 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdli.h>

void *aligned_alloc(size_t alignment, size_t size)
{
	/* all allocations are page aligned */
	(void)alignment;
	return malloc(size);
}

/*
STDC(201112)
*/