auto merge of #6205 : brson/rust/flate, r=brson

r? @graydon

I don't think this is necessary in core.
This commit is contained in:
bors
2013-05-10 19:41:00 -07:00
5 changed files with 7 additions and 7 deletions
-1
View File
@@ -228,7 +228,6 @@ pub mod rand;
pub mod run;
pub mod sys;
pub mod cast;
pub mod flate;
pub mod repr;
pub mod cleanup;
pub mod reflect;
+1 -1
View File
@@ -20,7 +20,7 @@
use middle;
use util::ppaux::ty_to_str;
use core::flate;
use std::flate;
use core::hash::HashUtil;
use core::hashmap::HashMap;
use std::serialize::Encodable;
+1 -1
View File
@@ -22,7 +22,7 @@
use syntax::print::pprust;
use syntax::{ast, attr};
use core::flate;
use std::flate;
use core::os::consts::{macos, freebsd, linux, android, win32};
pub enum os {
+4 -4
View File
@@ -15,14 +15,14 @@
*/
use libc;
use libc::{c_void, size_t, c_int};
use core::libc::{c_void, size_t, c_int};
use vec;
#[cfg(test)] use rand;
#[cfg(test)] use rand::RngUtil;
#[cfg(test)] use core::rand;
#[cfg(test)] use core::rand::RngUtil;
pub mod rustrt {
use libc::{c_int, c_void, size_t};
use core::libc::{c_int, c_void, size_t};
#[link_name = "rustrt"]
pub extern {
+1
View File
@@ -107,6 +107,7 @@ pub mod complex;
pub mod stats;
pub mod semver;
pub mod fileinput;
pub mod flate;
#[cfg(unicode)]
mod unicode;