fix typo in wordexp.h (note that the function is still unimplemented)
[musl] / src / malloc / __brk.c
1 #include <stdint.h>
2 #include "syscall.h"
3
4 uintptr_t __brk(uintptr_t newbrk)
5 {
6         return syscall1(__NR_brk, newbrk);
7 }