| Current Path : /usr/local/src/clamav-1.0.9/libclamav_rust/.cargo/vendor/tempfile/src/file/imp/ |
| Current File : //usr/local/src/clamav-1.0.9/libclamav_rust/.cargo/vendor/tempfile/src/file/imp/mod.rs |
cfg_if::cfg_if! {
if #[cfg(any(unix, target_os = "redox", target_os = "wasi"))] {
mod unix;
pub use self::unix::*;
} else if #[cfg(windows)] {
mod windows;
pub use self::windows::*;
} else {
mod other;
pub use self::other::*;
}
}