Switch 'native' to 'extern' (or 'foreign' in some descriptions)

This commit is contained in:
Graydon Hoare
2012-07-03 16:11:00 -07:00
parent 7259195caf
commit debb7e4641
127 changed files with 249 additions and 249 deletions

View File

@@ -6,7 +6,7 @@ export xorshift, seeded_xorshift;
enum rctx {}
#[abi = "cdecl"]
native mod rustrt {
extern mod rustrt {
fn rand_seed() -> ~[u8];
fn rand_new() -> *rctx;
fn rand_new_seeded(seed: ~[u8]) -> *rctx;