libfringe/src/lib.rs

32 lines
478 B
Rust
Raw Normal View History

2015-04-16 18:08:44 +08:00
// Copyright (c) 2015, edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
2015-02-24 12:13:25 +08:00
#![feature(no_std)]
2015-02-03 03:17:23 +08:00
#![feature(asm, core)]
#![feature(libc)]
#![no_std]
2015-01-10 05:45:39 +08:00
#[macro_use]
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;
pub use stack::Stack;
#[cfg(feature = "os")]
pub use os::Stack as OsStack;
2014-12-23 11:24:40 +08:00
#[cfg(not(test))]
mod std { pub use core::*; }
2014-12-24 13:22:49 +08:00
mod context;
mod stack;
mod debug;
2014-12-24 13:12:39 +08:00
mod arch;
#[cfg(feature = "os")]
mod os;