about summary refs log tree commit diff
path: root/src/libcore/logging.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-03-22 22:26:32 -0400
committerAlex Crichton <alex@alexcrichton.com>2013-03-26 19:20:02 -0400
commitfa7772893a63e6ac83ab461f80fb1f35c8633325 (patch)
tree07c280152830443a4151ce158ed2e01fcdc86173 /src/libcore/logging.rs
parent3d588c528685fa0590ff91f189f0ef44a3815ec2 (diff)
downloadrust-fa7772893a63e6ac83ab461f80fb1f35c8633325.tar.gz
rust-fa7772893a63e6ac83ab461f80fb1f35c8633325.zip
Remove unused imports throughout
Diffstat (limited to 'src/libcore/logging.rs')
-rw-r--r--src/libcore/logging.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libcore/logging.rs b/src/libcore/logging.rs
index be6469abc92..ba976de50ab 100644
--- a/src/libcore/logging.rs
+++ b/src/libcore/logging.rs
@@ -10,8 +10,6 @@
 
 //! Logging
 
-use libc;
-
 pub mod rustrt {
     use libc;
 
@@ -49,6 +47,7 @@ pub fn console_off() {
 pub fn log_type<T>(level: u32, object: &T) {
     use cast::transmute;
     use io;
+    use libc;
     use repr;
     use vec;