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