blob: e673157e0eb555c1b6d5ea4044b086400d92dfa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#![forbid(unsafe_op_in_unsafe_fn)]
use crate::os::xous::ffi::exit;
pub mod os;
#[path = "../unsupported/pipe.rs"]
pub mod pipe;
pub mod time;
#[path = "../unsupported/common.rs"]
mod common;
pub use common::*;
pub fn abort_internal() -> ! {
exit(101);
}
|