fix typo in wordexp.h (note that the function is still unimplemented)
[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 }