#[cfg(unix)]
pub mod unix;

#[cfg(windows)]
pub mod win;


#[cfg(unix)]
pub fn initialize() {
    unix::initialize();
}

#[cfg(windows)]
pub fn initialize() {
    win::initialize();
}


#[cfg(windows)]
pub use crate::os::win::process::*;