#ifndef BRK_H #define BRK_H #include "syscalls.h" static unsigned long brk(void * addr) { return syscall(BRK, addr); } #endif