Sign in
mojo
/
mojo-tools
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
linux
/
sbrk.c
blob: 1e82d643771e4ad251253990264b0a5e42cfac3a [
file
] [
log
] [
blame
]
#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
);
}