1 2 3 4 5 6 7 8 9 10
/* Can we bind native things? */ #[abi = "cdecl"] native mod rustrt { fn rand_new() -> *libc::c_void; } fn main() { bind rustrt::rand_new(); }