rust/src/test/run-pass/native2.rs

18 lines
265 B
Rust
Raw Normal View History

native "rust" mod rustrt {
fn unsupervise();
}
native "rust" mod bar = "" { }
2011-02-23 14:06:37 -05:00
native "cdecl" mod zed = "" { }
2011-02-23 14:06:37 -05:00
native "cdecl" mod libc = "" {
2011-08-12 10:40:25 -07:00
fn write(fd: int, buf: *u8, count: uint) -> int;
}
native "cdecl" mod baz = "" { }
2011-02-23 14:06:37 -05:00
fn main(args: [istr]) { }