2018-07-01 22:43:43 +02:00

7 lines
147 B
Rust

//! All platform specific (unsafe) code will be handled in this module.
#[cfg(unix)]
pub mod unix_kernel;
#[cfg(windows)]
pub mod windows_kernel;