ref: 541539b33afc0c198e44ecce36b6b0f2030c6b3b dir: /src/libc/arch/linux/_getheap.c/
#include <stddef.h> #include "../../libc.h" #include "../../syscall.h" #include "brk.h" void * _getheap(void) { return _sys_brk(0); }