1
Fork 0

De-export ptr, hash. Part of #3583.

This commit is contained in:
Graydon Hoare 2012-09-28 16:24:06 -07:00
parent baa08d5a95
commit ad951b5976
2 changed files with 0 additions and 5 deletions

View file

@ -137,7 +137,6 @@ mod uint {
#[path = "uint-template"] #[path = "uint-template"]
mod u8 { mod u8 {
pub use inst::is_ascii; pub use inst::is_ascii;
#[path = "u8.rs"] #[path = "u8.rs"]
mod inst; mod inst;
} }
@ -170,7 +169,6 @@ mod float;
mod f32; mod f32;
mod f64; mod f64;
mod str; mod str;
#[legacy_exports]
mod ptr; mod ptr;
#[legacy_exports] #[legacy_exports]
mod vec; mod vec;
@ -186,7 +184,6 @@ mod uniq;
mod ops; mod ops;
mod cmp; mod cmp;
mod num; mod num;
#[legacy_exports]
mod hash; mod hash;
#[legacy_exports] #[legacy_exports]
mod either; mod either;

View file

@ -6,7 +6,6 @@ use libc::{c_void, size_t};
#[nolink] #[nolink]
#[abi = "cdecl"] #[abi = "cdecl"]
extern mod libc_ { extern mod libc_ {
#[legacy_exports];
#[rust_stack] #[rust_stack]
fn memcpy(dest: *mut c_void, src: *const c_void, fn memcpy(dest: *mut c_void, src: *const c_void,
n: libc::size_t) -> *c_void; n: libc::size_t) -> *c_void;
@ -22,7 +21,6 @@ extern mod libc_ {
#[abi = "rust-intrinsic"] #[abi = "rust-intrinsic"]
extern mod rusti { extern mod rusti {
#[legacy_exports];
fn addr_of<T>(val: T) -> *T; fn addr_of<T>(val: T) -> *T;
} }