1 2 3 4 5 6 7 8 9
#[cfg(unix)] mod unix; #[cfg(unix)] pub(crate) use unix::kill_process; #[cfg(windows)] mod win; #[cfg(windows)] pub(crate) use win::kill_process;