1 2 3 4 5 6 7 8 9 10
//! Build script to pre-compile the heap memory allocation routines written in c for the time beeing //! extern crate cc; fn main() { cc::Build::new() .file("src/memory.c") .compile("memory"); }