#[cfg(any(target_os = "unknown", target_os = "none"))]
compile_error!("The target OS is \"unknown\" or \"none\", so it's unsupported by the errno crate.");
#[cfg(not(any(target_os = "unknown", target_os = "none")))]
compile_error!("The target OS is not yet supported in the errno crate.");
use crate::Errno;
pub fn with_description<F, T>(_err: Errno, _callback: F) -> T
where
F: FnOnce(Result<&str, Errno>) -> T,
{
unreachable!()
}
pub const STRERROR_NAME: &str = "";
pub fn errno() -> Errno {
unreachable!()
}
pub fn set_errno(_: Errno) {
unreachable!()
}