core: Inherit the mem module

This commit is contained in:
Alex Crichton 2014-04-30 20:13:05 -07:00
parent 5b75e44fb0
commit dca8a0d6e4
3 changed files with 2 additions and 4 deletions

View File

@ -24,3 +24,4 @@
/* Core modules for ownership management */
pub mod intrinsics;
pub mod mem;

View File

@ -13,8 +13,6 @@
//! This module contains functions for querying the size and alignment of
//! types, initializing and manipulating memory.
#![allow(missing_doc)] // FIXME
use cast;
use ptr;
use intrinsics;

View File

@ -134,6 +134,7 @@ extern crate core;
#[cfg(test)] pub use owned = realstd::owned;
pub use core::intrinsics;
pub use core::mem;
// Run tests with libgreen instead of libnative.
//
@ -243,8 +244,6 @@ pub mod path;
pub mod cast;
pub mod fmt;
pub mod cleanup;
pub mod mem;
/* Unsupported interfaces */