abi_definitions/
lib.rs

1#![no_std]
2
3extern crate alloc;
4
5mod file_system;
6mod memory;
7mod string;
8mod task;
9mod time;
10mod user;
11
12pub use file_system::*;
13pub use memory::*;
14pub use string::*;
15pub use task::*;
16pub use time::*;
17pub use user::*;
18
19#[cfg(test)]
20mod tests {
21    #[cfg(any(target_os = "linux", target_os = "macos", target_os = "windows"))]
22    drivers_std::memory::instantiate_global_allocator!();
23}