6 lines
93 B
C
6 lines
93 B
C
#include "syscall.h"
|
|
|
|
int brk(void *end)
|
|
{
|
|
return -(syscall1(__NR_brk, (long)end) == -1);
|
|
}
|