about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-12-18 09:57:00 -0800
committerAlex Crichton <alex@alexcrichton.com>2013-12-24 19:59:54 -0800
commit3dc38b0c51f8b98ea550b5a3842c87884f10fa8d (patch)
treed8e1c30dc7191971c4ef1618d26c38293ffb29a2 /src/libstd
parent0dcdefcf7ee3c143fcaf3368bcfbef703ef54fed (diff)
downloadrust-3dc38b0c51f8b98ea550b5a3842c87884f10fa8d.tar.gz
rust-3dc38b0c51f8b98ea550b5a3842c87884f10fa8d.zip
std: Stop reexporting the contents of 'mod consts'
This prevents usage of the win32 utf-16 helper functions from outside of libstd.

Closes #9053
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/os.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libstd/os.rs b/src/libstd/os.rs
index 43a9390bfb6..8f2f2190885 100644
--- a/src/libstd/os.rs
+++ b/src/libstd/os.rs
@@ -43,8 +43,6 @@ use to_str;
 use unstable::finally::Finally;
 use sync::atomics::{AtomicInt, INIT_ATOMIC_INT, SeqCst};
 
-pub use os::consts::*;
-
 /// Delegates to the libc close() function, returning the same return value.
 pub fn close(fd: c_int) -> c_int {
     unsafe {
@@ -334,7 +332,7 @@ pub fn pipe() -> Pipe {
 
 /// Returns the proper dll filename for the given basename of a file.
 pub fn dll_filename(base: &str) -> ~str {
-    format!("{}{}{}", DLL_PREFIX, base, DLL_SUFFIX)
+    format!("{}{}{}", consts::DLL_PREFIX, base, consts::DLL_SUFFIX)
 }
 
 /// Optionally returns the filesystem path to the current executable which is