1#define _BSD_SOURCE 2#include <unistd.h> 3#include <errno.h> 4#include "syscall.h" 5 6int brk(void *end) 7{ 8 return __syscall_ret(-ENOMEM); 9}