mod libc_util;
mod error;
mod id_map;
mod mount_table;
pub mod spawn;
pub mod systemd;
mod command;
pub use id_map::IdMap;
pub use mount_table::{MountTable, MountpointType};
pub use command::{Child, Command, ExitStatus, Namespace};
#[cfg(debug_assertions)]
#[global_allocator]
static ALLOC: alloc_counter::AllocCounterSystem = alloc_counter::AllocCounterSystem;