13 lines
170 B
Plaintext
13 lines
170 B
Plaintext
|
// -*- 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";
|