13da5c369Sopenharmony_ci//! Mount file systems 23da5c369Sopenharmony_ci#[cfg(any(target_os = "android", target_os = "linux"))] 33da5c369Sopenharmony_ci#[cfg_attr(docsrs, doc(cfg(all())))] 43da5c369Sopenharmony_cimod linux; 53da5c369Sopenharmony_ci 63da5c369Sopenharmony_ci#[cfg(any(target_os = "android", target_os = "linux"))] 73da5c369Sopenharmony_cipub use self::linux::*; 83da5c369Sopenharmony_ci 93da5c369Sopenharmony_ci#[cfg(any( 103da5c369Sopenharmony_ci target_os = "dragonfly", 113da5c369Sopenharmony_ci target_os = "freebsd", 123da5c369Sopenharmony_ci target_os = "macos", 133da5c369Sopenharmony_ci target_os = "netbsd", 143da5c369Sopenharmony_ci target_os = "openbsd" 153da5c369Sopenharmony_ci))] 163da5c369Sopenharmony_ci#[cfg_attr(docsrs, doc(cfg(all())))] 173da5c369Sopenharmony_cimod bsd; 183da5c369Sopenharmony_ci 193da5c369Sopenharmony_ci#[cfg(any( 203da5c369Sopenharmony_ci target_os = "dragonfly", 213da5c369Sopenharmony_ci target_os = "freebsd", 223da5c369Sopenharmony_ci target_os = "macos", 233da5c369Sopenharmony_ci target_os = "netbsd", 243da5c369Sopenharmony_ci target_os = "openbsd" 253da5c369Sopenharmony_ci))] 263da5c369Sopenharmony_cipub use self::bsd::*; 27