summaryrefslogtreecommitdiff
path: root/src/stdlib/aligned_alloc.c
blob: 36bae69d3c5281620d7718ac39e3f4c50e05512b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#if 0

#include <stdli.h>

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

/*
STDC(201112)
*/


#endif