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

19 lines
289 B
Rust
Raw Normal View History

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