mirror of
https://github.com/fluencelabs/musl
synced 2025-06-27 21:52:02 +00:00
8 lines
116 B
C
8 lines
116 B
C
![]() |
#include <stdint.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
uintptr_t __brk(uintptr_t newbrk)
|
||
|
{
|
||
|
return syscall1(__NR_brk, newbrk);
|
||
|
}
|