1
Fork 0

Use new io in print and println macroses

This commit is contained in:
Simonas Kazlauskas 2015-03-09 00:30:15 +02:00
parent 3e4be02b80
commit 6e92f0580b
8 changed files with 62 additions and 57 deletions

View file

@ -37,10 +37,10 @@ pub use self::buffered::IntoInnerError;
pub use self::cursor::Cursor;
pub use self::error::{Result, Error, ErrorKind};
pub use self::util::{copy, sink, Sink, empty, Empty, repeat, Repeat};
pub use self::stdio::{stdin, stdout, stderr, Stdin, Stdout, Stderr};
pub use self::stdio::{stdin, stdout, stderr, _print, Stdin, Stdout, Stderr};
pub use self::stdio::{StdoutLock, StderrLock, StdinLock};
#[doc(no_inline, hidden)]
pub use self::stdio::set_panic;
pub use self::stdio::{set_panic, set_print};
#[macro_use] mod lazy;