redox/arch/arm/src/context.rs

10 lines
105 B
Rust
Raw Normal View History

2016-08-26 01:03:01 +02:00
#[derive(Debug)]
pub struct Context;
impl Context {
pub fn new() -> Self {
Context
}
}