Function sbrk

Source
pub fn sbrk(size: isize) -> Result<*mut u8, ErrorStatus>
Expand description

Increases the range of the process’s data break by size bytes returns the new break pointer

you should probably use crate::alloc::GLOBAL_SYSTEM_ALLOCATOR instead for allocating memory