pub mod fork;
pub mod integrity;
pub mod metadata;
pub mod self_check;
pub mod canary;
#[cfg(feature = "poison-on-free")]
pub mod poison;
#[cfg(feature = "quarantine")]
pub mod quarantine;
pub mod guard_pages;
#[cold]
#[inline(never)]
pub fn abort_with_message(msg: &str) -> ! {
unsafe {
libc::write(2, msg.as_ptr() as *const libc::c_void, msg.len());
libc::abort();
}
}