Sign in
mojo
/
mojo-tools
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
malloc
/
__brk.c
blob: 4c9119b4d11ce4991c8b903195f35961d3879a13 [
file
] [
log
] [
blame
]
#include
<stdint.h>
#include
"syscall.h"
uintptr_t
__brk
(
uintptr_t
newbrk
)
{
return
__syscall
(
SYS_brk
,
newbrk
);
}