brk.c 96 B

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