nc 0.9.7

Access system calls directly
Documentation
1
2
3
4
5
/// Change data segment size.
pub unsafe fn sbrk(incr: intptr_t) -> Result<usize, Errno> {
    let incr = incr as usize;
    syscall1(SYS_SBRK, incr)
}