about summary refs log tree commit diff
path: root/src/libstd/os.rs
diff options
context:
space:
mode:
authorKevin Ballard <kevin@sb.org>2014-05-25 16:21:07 -0700
committerKevin Ballard <kevin@sb.org>2014-05-25 16:21:07 -0700
commit69070ac85fcf930b02e2c75bc161a75c5742e138 (patch)
treef684618920bdfc2429fdb7061d1f67b8f3ab6697 /src/libstd/os.rs
parent759517c180857e1b494486d810c882755a1e2e26 (diff)
downloadrust-69070ac85fcf930b02e2c75bc161a75c5742e138.tar.gz
rust-69070ac85fcf930b02e2c75bc161a75c5742e138.zip
libstd: Remove unnecessary re-exports under std::std
Diffstat (limited to 'src/libstd/os.rs')
-rw-r--r--src/libstd/os.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libstd/os.rs b/src/libstd/os.rs
index 00e5574c86d..415cc69f321 100644
--- a/src/libstd/os.rs
+++ b/src/libstd/os.rs
@@ -1328,7 +1328,7 @@ impl Drop for MemoryMap {
 
 #[cfg(target_os = "linux")]
 pub mod consts {
-    pub use std::os::arch_consts::ARCH;
+    pub use os::arch_consts::ARCH;
 
     pub static FAMILY: &'static str = "unix";
 
@@ -1359,7 +1359,7 @@ pub mod consts {
 
 #[cfg(target_os = "macos")]
 pub mod consts {
-    pub use std::os::arch_consts::ARCH;
+    pub use os::arch_consts::ARCH;
 
     pub static FAMILY: &'static str = "unix";
 
@@ -1390,7 +1390,7 @@ pub mod consts {
 
 #[cfg(target_os = "freebsd")]
 pub mod consts {
-    pub use std::os::arch_consts::ARCH;
+    pub use os::arch_consts::ARCH;
 
     pub static FAMILY: &'static str = "unix";
 
@@ -1421,7 +1421,7 @@ pub mod consts {
 
 #[cfg(target_os = "android")]
 pub mod consts {
-    pub use std::os::arch_consts::ARCH;
+    pub use os::arch_consts::ARCH;
 
     pub static FAMILY: &'static str = "unix";
 
@@ -1452,7 +1452,7 @@ pub mod consts {
 
 #[cfg(target_os = "win32")]
 pub mod consts {
-    pub use std::os::arch_consts::ARCH;
+    pub use os::arch_consts::ARCH;
 
     pub static FAMILY: &'static str = "windows";