diff options
| author | Graydon Hoare <[email protected]> | 2011-03-09 17:29:18 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-09 17:29:18 -0800 |
| commit | 11a10c7a7b86c7bf91a8adcd41573f9de9eeaf0e (patch) | |
| tree | 970360db45c72fb662044cab8dab70dd4311e0c1 /src/lib/io.rs | |
| parent | Add ty_obj case to pretty printer (diff) | |
| download | rust-11a10c7a7b86c7bf91a8adcd41573f9de9eeaf0e.tar.xz rust-11a10c7a7b86c7bf91a8adcd41573f9de9eeaf0e.zip | |
Remove redundant imports in lib (rustc doesn't like 'std' as a synonym for root within std.rc anyway)
Diffstat (limited to 'src/lib/io.rs')
| -rw-r--r-- | src/lib/io.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/io.rs b/src/lib/io.rs index dbe6de7a..34c4a98d 100644 --- a/src/lib/io.rs +++ b/src/lib/io.rs @@ -1,7 +1,4 @@ -import std.os.libc; -import std._str; -import std._vec; - +import os.libc; type stdio_reader = state obj { fn getc() -> int; |