Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
5d8abc362fa8931e99b5613a255dbda9eb4c6373
/
.
/
crates
/
tempfile
/
src
/
file
/
imp
/
mod.rs
blob: fbb2bbf635d1e5c5d96e00ea087d2411a4b6bff0 [
file
] [
log
] [
blame
]
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
::*;
}
}