Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
4a8335b2248d934e2e40386af4f1b0495b3c173d
/
.
/
src
/
malloc
/
__brk.c
blob: 4c9119b4d11ce4991c8b903195f35961d3879a13 [
file
]
#include
<stdint.h>
#include
"syscall.h"
uintptr_t
__brk
(
uintptr_t
newbrk
)
{
return
__syscall
(
SYS_brk
,
newbrk
);
}