1//! Defines functions and macros that can be utilized across the kernel and other programs using the kernel. 2pub mod generic; 3pub mod log_error; 4 5#[cfg(feature = "testing")] 6pub mod testing;