blob: 18993397002b354a6cf0304ef34fd0f3979026e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// xfail-test
// -*- rust -*-
native "cdecl" mod rustrt {
fn str_buf(str s) -> int;
}
native mod libc = target_libc {
fn puts(int s) -> ();
}
mod user = "native-src/native.rs";
|