1 2 3 4 5 6 7 8 9 10 11
/* #[link(name = "sys3_libc", kind = "static")] extern "C" { fn malloc(size: usize) -> *mut c_void; fn free(ptr: *mut c_void); fn realloc(ptr: *mut c_void, size: usize) -> *mut c_void; fn calloc(count: usize, size: usize) -> *mut c_void; } */ // IMPORTS //