about summary refs log tree commit diff
path: root/src/libstd/io/prelude.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/io/prelude.rs')
-rw-r--r--src/libstd/io/prelude.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/libstd/io/prelude.rs b/src/libstd/io/prelude.rs
deleted file mode 100644
index 3baab2be377..00000000000
--- a/src/libstd/io/prelude.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-//! The I/O Prelude
-//!
-//! The purpose of this module is to alleviate imports of many common I/O traits
-//! by adding a glob import to the top of I/O heavy modules:
-//!
-//! ```
-//! # #![allow(unused_imports)]
-//! use std::io::prelude::*;
-//! ```
-
-#![stable(feature = "rust1", since = "1.0.0")]
-
-#[stable(feature = "rust1", since = "1.0.0")]
-pub use super::{BufRead, Read, Seek, Write};