std/sys/net/hostname/
unsupported.rs

1use crate::ffi::OsString;
2use crate::io::{Error, Result};
3
4pub fn hostname() -> Result<OsString> {
5    Err(Error::UNSUPPORTED_PLATFORM)
6}