smartalloc-sys 0.2.0

Unsafe rust binding to smartalloc
Documentation
1
2
3
4
5
6
7
8
9
#![no_std]

fn main() {
    cc::Build::new()
        .include("csrc")
        .file("csrc/smartall.c")
        .define("SMARTALLOC", None)
        .compile("smartall");
}