7 lines
85 B
C
7 lines
85 B
C
#include "syscall.h"
|
|
|
|
int brk(void *end)
|
|
{
|
|
return -(syscall(SYS_brk, end) == -1);
|
|
}
|