From ad2578a7ad98de9171400aea20c38f3ca237d88e Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 8 Apr 2013 21:56:10 -0500 Subject: move size back to term::ios --- test/termios3.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/termios3.rs') diff --git a/test/termios3.rs b/test/termios3.rs index c387260..f02c324 100644 --- a/test/termios3.rs +++ b/test/termios3.rs @@ -3,7 +3,7 @@ extern mod term; fn main () { match io::stdout().get_type() { io::Screen => { - let (cols, rows) = term::size(); + let (cols, rows) = term::ios::size(); println(fmt!("tty: %d %d", cols as int, rows as int)); } io::File => { -- cgit v1.2.3-54-g00ecf