10 lines
131 B
Rust
10 lines
131 B
Rust
/*
|
|
Can we bind native things?
|
|
*/
|
|
|
|
native "c-stack-cdecl" mod rustrt {
|
|
fn pin_task();
|
|
}
|
|
|
|
fn main() { bind rustrt::pin_task(); }
|