1 2 3 4 5 6 7 8 9 10
#![no_std] #[macro_use] extern crate alloc; pub(crate) mod empty; pub mod syscall; pub mod table; pub use syscall::SysCall; pub use table::SysCallTable;