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