Sign in
android
/
platform
/
external
/
musl
/
refs/heads/android13-d2-release
/
.
/
src
/
malloc
/
posix_memalign.c
blob: ad4d8f473015e378ad1025363cd68507ec539f18 [
file
] [
log
] [
blame
] [
edit
]
#include
<stdlib.h>
#include
<errno.h>
int
posix_memalign
(
void
**
res
,
size_t
align
,
size_t
len
)
{
if
(
align
<
sizeof
(
void
*))
return
EINVAL
;
void
*
mem
=
aligned_alloc
(
align
,
len
);
if
(!
mem
)
return
errno
;
*
res
=
mem
;
return
0
;
}