1
0

brk.c 85 B

123456
  1. #include "syscall.h"
  2. int brk(void *end)
  3. {
  4. return -(syscall(SYS_brk, end) == -1);
  5. }