Sign in
mojo
/
mojo-tools
/
ed4bdf2b045dcf76699eb5095f037df4b8750a28
/
.
/
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
);
}