#![cfg_attr(not(test), no_std)]
#![feature(core_intrinsics, lang_items)]
#![feature(error_in_core)]
pub mod getc_putc;
pub mod kprint;
pub mod klog;
pub mod rich_text;
pub mod spin_mutex;
pub mod mmap_device;
pub mod tail;
pub mod string;
pub mod error_kind;
pub mod aarch64_mmu_constant;
pub mod spin;
pub mod service;
pub mod syscall;
pub mod mmap;
#[deprecated(note = "The topic module is obsolete and will be removed in a future version. Use alternative IPC mechanisms.")]
pub mod topic;
pub mod process;
pub mod file;
extern crate alloc;