Sign in
rust
/
rust
/
656d4e8a962ca51f7a76167fc762fabfaec0cbbd
/
.
/
library
/
std
/
src
/
sys
/
pal
/
xous
/
mod.rs
blob: 077cff1ee0f21916413897dcea2663a315009016 [
file
] [
log
] [
blame
]
#![
forbid
(
unsafe_op_in_unsafe_fn
)]
use
crate
::
os
::
xous
::
ffi
::
exit
;
pub
mod
os
;
pub
mod
time
;
#[
path
=
"../unsupported/common.rs"
]
mod
common
;
pub
use
common
::*;
pub
fn
abort_internal
()
->
!
{
exit
(
101
);
}