You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aya/aya-obj/src/btf/mod.rs

13 lines
216 B
Rust

//! BTF loading, parsing and relocation.
#[expect(clippy::module_inception)]
mod btf;
mod info;
mod relocation;
mod types;
pub use btf::*;
pub use info::*;
pub use relocation::BtfRelocationError;
pub use types::*;