Sign in
cobalt
/
cobalt
/
b48d5d342d8a80b19c4a69b353cdb8fdc6ab3789
/
.
/
third_party
/
musl
/
src
/
malloc
/
posix_memalign.c
blob: ad4d8f473015e378ad1025363cd68507ec539f18 [
file
] [
log
] [
blame
]
#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
;
}