0b44a031
aa398f56
1 2 3 4 5
6
7
#include <stdint.h> #include "syscall.h" uintptr_t __brk(uintptr_t newbrk) { return syscall(SYS_brk, newbrk); }