summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2016-09-30 23:26:44 +0000
committerBrian Anderson <banderson@mozilla.com>2016-11-01 17:08:24 +0000
commitca30691813836e1c6896e5ba5d4397eb717e7270 (patch)
tree9079226fb2fa666135049c929ee654af15b635e9 /src/libstd/lib.rs
parentf3a709dc52bb3e617ccb016a8b20a741c23da77d (diff)
downloadrust-ca30691813836e1c6896e5ba5d4397eb717e7270.tar.gz
rust-ca30691813836e1c6896e5ba5d4397eb717e7270.zip
std: Move sys_common to libstd/sys_common
Make the directory structure reflect the module structure. I've always
found the existing structure confusing.
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 1d6c2403c2f..3eb82881090 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -456,8 +456,7 @@ pub mod time;
 mod memchr;
 
 #[macro_use]
-#[path = "sys/common/mod.rs"] mod sys_common;
-
+mod sys_common;
 mod sys;
 
 pub mod rt;