#[cfg(not(all(
target_os = "linux",
any(target_arch = "x86_64", target_arch = "aarch64")
)))]
compile_error!("only x86_64/aarch64 linux is supported");
pub mod error;
mod function_analysis;
pub mod helpers;
mod linker;
mod pointer_cage;
pub mod program;
mod region_analysis;
mod ubpf;
mod util;
#[cfg(test)]
mod test;
#[cfg(any(test, feature = "testing"))]
pub mod test_util;