1// 2// Copyright 2023, Colias Group, LLC 3// 4// SPDX-License-Identifier: BSD-2-Clause 5// 6 7cfg_if::cfg_if! { 8 if #[cfg(panic = "unwind")] { 9 mod unwind; 10 use unwind as imp; 11 } else { 12 mod abort; 13 use abort as imp; 14 } 15} 16 17pub(crate) use imp::*;