clone_file/
lib.rs

1mod common;
2
3pub use common::*;
4
5#[cfg(any(doc, target_os = "linux"))]
6pub mod linux;
7
8#[cfg(target_os = "linux")]
9pub use linux::*;
10
11#[cfg(any(doc, not(target_os = "linux")))]
12pub mod unsupported;
13
14#[cfg(not(target_os = "linux"))]
15pub use unsupported::*;