base/
externs.rs

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