repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
split internal lock API out of libc.h, creating lock.h
[musl.git]
/
src
/
malloc
/
aligned_alloc.c
blob
b6143f303f673a4e1fcf5f6a91665e4952455abc
1
#include <stdlib.h>
2
#include
"malloc_impl.h"
3
4
void
*
aligned_alloc
(
size_t
align
,
size_t
len
)
5
{
6
return
__memalign
(
align
,
len
);
7
}