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