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