#![no_std]
pub use rustix;
pub use libc;
#[cfg(any(all(linux_kernel, feature = "io_uring"), feature = "process"))]
mod signal_ext;
#[cfg(all(linux_kernel, feature = "io_uring"))]
pub mod io_uring {
pub use super::signal_ext::*;
}
#[cfg(feature = "process")]
pub mod process {
pub use super::signal_ext::*;
}