trident3-base 3.0.1

Foundation runtime library for Trident 3
Documentation
/*
#[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 //