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