cleanup types stuff in headers, fix missing u_int*_t in sys/types.h
[musl] / src / linux / brk.c
1 #include "syscall.h"
2
3 int brk(void *end)
4 {
5         return -(syscall(SYS_brk, end) == -1);
6 }