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