2011-02-01 12:40:04 -06:00
|
|
|
native "rust" mod rustrt {
|
2011-02-02 09:43:57 -06:00
|
|
|
type vbuf;
|
2011-02-04 10:10:04 -06:00
|
|
|
fn vec_buf[T](vec[T] v, uint offset) -> vbuf;
|
2011-02-01 12:40:04 -06:00
|
|
|
}
|
|
|
|
|
2011-02-07 11:46:28 -06:00
|
|
|
native mod libc = "libc.dylib" {
|
|
|
|
fn write(int fd, rustrt.vbuf buf, uint count) -> int;
|
|
|
|
}
|
|
|
|
|
2011-02-01 12:40:04 -06:00
|
|
|
fn main(vec[str] args) {
|
|
|
|
}
|