Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
a1f71861681fda811016c004e5be3d95919a125f
/
.
/
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
::*;