Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
linux
/
sbrk.c
blob: bb866305844413e7ccc790480e73c6820dc7de13 [
file
] [
log
] [
blame
]
#define
_BSD_SOURCE
#include
<unistd.h>
#include
<stdint.h>
#include
<errno.h>
#include
"syscall.h"
void
*
sbrk
(
intptr_t
inc
)
{
if
(
inc
)
return
(
void
*)
__syscall_ret
(-
ENOMEM
);
return
(
void
*)
__syscall
(
SYS_brk
,
0
);
}