redox/kernel/arch/arm/src/context.rs
2017-01-03 15:55:00 -07:00

10 lines
105 B
Rust

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