diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2012-09-28 16:24:06 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2012-09-28 16:27:28 -0700 |
| commit | ad951b5976ce4205874b366f8cc2b8810b08d450 (patch) | |
| tree | d177661a4c467cd3d19a4d3a186dd092ccac885e /src/libcore/ptr.rs | |
| parent | baa08d5a958a42a219f8c61bdfca0e4112e16820 (diff) | |
| download | rust-ad951b5976ce4205874b366f8cc2b8810b08d450.tar.gz rust-ad951b5976ce4205874b366f8cc2b8810b08d450.zip | |
De-export ptr, hash. Part of #3583.
Diffstat (limited to 'src/libcore/ptr.rs')
| -rw-r--r-- | src/libcore/ptr.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libcore/ptr.rs b/src/libcore/ptr.rs index 7f1f1e4b345..0cc283e89a4 100644 --- a/src/libcore/ptr.rs +++ b/src/libcore/ptr.rs @@ -6,7 +6,6 @@ use libc::{c_void, size_t}; #[nolink] #[abi = "cdecl"] extern mod libc_ { - #[legacy_exports]; #[rust_stack] fn memcpy(dest: *mut c_void, src: *const c_void, n: libc::size_t) -> *c_void; @@ -22,7 +21,6 @@ extern mod libc_ { #[abi = "rust-intrinsic"] extern mod rusti { - #[legacy_exports]; fn addr_of<T>(val: T) -> *T; } |
