1#![allow(internal_features)]
6#![feature(core_intrinsics)]
7#![feature(thread_local)]
8#![feature(fmt_internals)]
9#![feature(unboxed_closures)]
10#![feature(allocator_api)]
11#![feature(c_variadic)]
12#![feature(linkage)]
13#![feature(c_size_t)]
14#![feature(once_cell_try)]
15#![feature(normalize_lexically)]
16#![feature(random)]
17#![feature(io_error_inprogress)]
18
19pub(crate) mod arch;
20
21mod runtime;
22pub use runtime::{set_upcall_handler, RuntimeState, OUR_RUNTIME};
23
24mod error;
25pub use error::*;
26
27pub mod preinit;
28
29#[allow(non_snake_case)]
30pub mod syms;
31
32pub mod pager;