redox/arch/arm/src/context.rs
Jeremy Soller 6715d5c534 Arm!
2016-08-25 17:03:01 -06:00

10 lines
105 B
Rust

#[derive(Debug)]
pub struct Context;
impl Context {
pub fn new() -> Self {
Context
}
}