oct 0.28.2

Octonary transcodings.
Documentation
// Copyright 2024-2026 Gabriel Bjørnager Jensen.
//
// This Source Code Form is subject to the terms of
// the Mozilla Public License, v. 2.0. If a copy of
// the MPL was not distributed with this file, you
// can obtain one at:
// <https://mozilla.org/MPL/2.0/>.

//! The [`RawOsError`] type.

#![cfg(feature = "std")]

#[allow(missing_docs)]
#[cfg(target_os = "uefi")]
pub type RawOsError = usize;

#[allow(missing_docs)]
#[cfg(not(target_os = "uefi"))]
pub type RawOsError = i32;