blob: 8955609643bb2989b43f46fb2f4112afcf5a54d6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// xfail-stage0
// -*- 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";
|