remove unused imports

This commit is contained in:
Brendan Cully 2013-07-10 22:08:50 -07:00
parent 9b5d523126
commit e6e4f52bcf
7 changed files with 3 additions and 7 deletions

View file

@ -26,7 +26,9 @@ use option::{None, Option, Some};
use ptr::to_unsafe_ptr;
use ptr;
use ptr::RawPtr;
use rt::global_heap::{malloc_raw, realloc_raw};
#[cfg(not(stage0))]
use rt::global_heap::malloc_raw;
use rt::global_heap::realloc_raw;
use sys;
use sys::size_of;
use uint;