2011-06-15 13:19:50 -05:00
|
|
|
|
|
|
|
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
|
|
|
native mod rustrt {
|
2011-09-01 00:14:49 -05:00
|
|
|
fn unsupervise();
|
2011-02-01 12:40:04 -06:00
|
|
|
}
|
|
|
|
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
2011-12-15 14:25:29 -06:00
|
|
|
#[nolink]
|
2011-11-16 22:49:38 -06:00
|
|
|
native mod bar { }
|
2011-02-23 13:06:37 -06:00
|
|
|
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
2011-12-15 14:25:29 -06:00
|
|
|
#[nolink]
|
2011-11-16 22:49:38 -06:00
|
|
|
native mod zed { }
|
2011-02-23 13:06:37 -06:00
|
|
|
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
2011-12-15 14:25:29 -06:00
|
|
|
#[nolink]
|
2011-11-16 22:49:38 -06:00
|
|
|
native mod libc {
|
2012-03-12 22:04:27 -05:00
|
|
|
fn write(fd: int, buf: *u8,
|
|
|
|
count: core::libc::size_t) -> core::libc::ssize_t;
|
2011-02-07 11:46:28 -06:00
|
|
|
}
|
|
|
|
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
2011-12-15 14:25:29 -06:00
|
|
|
#[nolink]
|
2011-11-16 22:49:38 -06:00
|
|
|
native mod baz { }
|
2011-02-23 13:06:37 -06:00
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
fn main(args: ~[str]) { }
|