#![allow(unexpected_cfgs)]
#[cfg(any(
all(
all(target_vendor = "apple", not(target_os = "macos")), // TARGET_OS_IPHONE
not(target_env = "macabi"), // !TARGET_OS_MACCATALYST
),
// (TARGET_OS_OSX && TARGET_CPU_ARM64)
all(target_os = "macos", target_arch = "aarch64"),
))]
type Inner = u16;
#[cfg(not(any(
all(
all(target_vendor = "apple", not(target_os = "macos")),
not(target_env = "macabi"),
),
all(target_os = "macos", target_arch = "aarch64"),
)))]
type Inner = u32;
pub type SSLCipherSuite = Inner;