heim-memory 0.0.11

Cross-platform memory information
Documentation
#![allow(missing_docs)]

cfg_if::cfg_if! {
    if #[cfg(target_os = "linux")] {
        mod linux;

        pub use self::linux::*;

    } else if #[cfg(target_os = "windows")] {
        mod windows;

        pub use self::windows::*;
    } else if #[cfg(target_os = "macos")] {
        mod macos;

        pub use self::macos::*;
    } else {
        compile_error!("Unsupported OS!");
    }
}