Core operating system functions
pub extern crate libc;
OS related constants (typically C-style ‘defines’)
allocate raw program memory (atleast around the size of the system’s page-size (usually 4096); ie, not small allocations)
release raw program memory (unmanaged memory); ie, allocated with fn memory or fn sys_munmap
fn memory
fn sys_munmap