forked from M-Labs/libfringe
make stack public
This commit is contained in:
parent
7aa58f43f7
commit
9855084890
|
@ -11,12 +11,13 @@ extern crate core;
|
||||||
extern crate std;
|
extern crate std;
|
||||||
|
|
||||||
pub use context::Context;
|
pub use context::Context;
|
||||||
|
pub use stack::{Stack, StackSource};
|
||||||
|
|
||||||
#[cfg(not(test))]
|
#[cfg(not(test))]
|
||||||
mod std { pub use core::*; }
|
mod std { pub use core::*; }
|
||||||
|
|
||||||
mod context;
|
mod context;
|
||||||
mod stack;
|
pub mod stack;
|
||||||
|
|
||||||
mod arch;
|
mod arch;
|
||||||
mod platform;
|
mod platform;
|
||||||
|
|
Loading…
Reference in New Issue