about summary refs log tree commit diff
path: root/src/libstd/prelude.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-10-07 13:25:06 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-10-10 03:38:51 -0700
commitfacefa7c8d1adf6c851dca88fcf4f5d26f72caa9 (patch)
tree95e08a16097fb774d8c2c1f9e20fd362b2530de7 /src/libstd/prelude.rs
parenta0d2f71e8e64d7994f20932caedab1b8dccc5539 (diff)
downloadrust-facefa7c8d1adf6c851dca88fcf4f5d26f72caa9.tar.gz
rust-facefa7c8d1adf6c851dca88fcf4f5d26f72caa9.zip
Implement rt::io::stdio
Additionally, this moves the prelude imports of print/println from std::io to
std::rt::io.

Closes #6846
Diffstat (limited to 'src/libstd/prelude.rs')
-rw-r--r--src/libstd/prelude.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/prelude.rs b/src/libstd/prelude.rs
index 273a01c1811..3da337add94 100644
--- a/src/libstd/prelude.rs
+++ b/src/libstd/prelude.rs
@@ -39,7 +39,7 @@ pub use option::{Option, Some, None};
 pub use result::{Result, Ok, Err};
 
 // Reexported functions
-pub use io::{print, println};
+pub use rt::io::stdio::{print, println};
 pub use iter::range;
 pub use from_str::from_str;