blob: 4fcf4499e75b44c6663c0c3b8a7ef1d627923f97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// -*- rust -*-
native mod libc = target_libc {
fn open(int name, int flags, int mode) -> int;
fn close(int fd) -> int;
fn read(int fd, int buf, int count) -> int;
fn write(int fd, int buf, int count) -> int;
fn malloc(int sz) -> int;
fn free(int p) -> ();
}
native "rust" mod rustrt {
fn str_buf(str s) -> int;
}
mod inner = "native-mod-src/inner.rs";
|