rust/src/test/run-pass/native.rc

13 lines
170 B
Plaintext
Raw Normal View History

2010-06-23 23:03:09 -05:00
// -*- rust -*-
native "rust" mod rustrt {
fn str_buf(str s) -> int;
}
native mod libc = target_libc {
fn puts(int s) -> ();
}
mod user = "native-src/native.rs";