libfringe/src/lib.rs

22 lines
250 B
Rust
Raw Normal View History

2015-01-13 15:38:52 +08:00
#![feature(asm)]
#![no_std]
2015-01-10 05:45:39 +08:00
#[macro_use]
#[allow(unstable)]
extern crate core;
2014-12-23 11:24:40 +08:00
#[cfg(test)]
#[macro_use]
extern crate std;
2014-12-23 11:24:40 +08:00
pub use context::Context;
#[cfg(not(test))]
mod std { pub use core::*; }
2014-12-24 13:22:49 +08:00
2014-12-23 11:24:40 +08:00
mod context;
mod stack;
2014-12-24 13:12:39 +08:00
mod arch;
mod platform;