use a more-correct integer type, and silence 64-bit warnings as a bonus
[musl] / src / linux / brk.c
1 #include "syscall.h"
2
3 int brk(void *end)
4 {
5         return -(syscall1(__NR_brk, (long)end) == -1);
6 }