Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
3d0c78c2c2bc4a7f55c333c713406c2a9ea287e4
/
.
/
crates
/
nix
/
src
/
mount
/
mod.rs
blob: 8caf27f7df540a45c0702e84fc09f7d1d146c961 [
file
] [
log
] [
blame
]
//! Mount file systems
#[
cfg
(
linux_android
)]
mod
linux
;
#[
cfg
(
linux_android
)]
pub
use
self
::
linux
::*;
#[
cfg
(
bsd
)]
mod
bsd
;
#[
cfg
(
bsd
)]
pub
use
self
::
bsd
::*;