rust/src/test/run-pass/bind-native.rs
Graydon Hoare 6f5853f5a1 Libc/os/run/rand/io reorganization. Close #1373. Close #1638.
- Move io, run and rand to core.
 - Remove incorrect ctypes module (use libc).
 - Remove os-specific modules for os and fs.
 - Split fs between core::path and core::os.
2012-03-12 20:08:29 -07:00

11 lines
149 B
Rust

/*
Can we bind native things?
*/
#[abi = "cdecl"]
native mod rustrt {
fn rand_new() -> *libc::c_void;
}
fn main() { bind rustrt::rand_new(); }