Sign in
fuchsia
/
third_party
/
rust
/
ae60ebd46daace4af7eae5e254b39f55b8b51e92
/
.
/
library
/
std
/
src
/
sys
/
net
/
hostname
/
mod.rs
blob: a4b5b76059d301a151455f50ff3e2b7b5d30224b [
file
] [
log
] [
blame
]
cfg_select
!
{
target_family
=
"unix"
=>
{
mod
unix
;
pub
use
unix
::
hostname
;
}
target_os
=
"windows"
=>
{
mod
windows
;
pub
use
windows
::
hostname
;
}
_
=>
{
mod
unsupported
;
pub
use
unsupported
::
hostname
;
}
}