Browse Source

Merge pull request #92 from willfindlay/expose_bindings

aya-bpf/helpers: expose raw bindings through helpers::gen
Alessandro Decina 3 years ago
parent
commit
3eb0fe3257
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bpf/aya-bpf/src/helpers.rs

+ 1 - 1
bpf/aya-bpf/src/helpers.rs

@@ -1,6 +1,6 @@
 use core::mem::{self, MaybeUninit};
 
-use aya_bpf_bindings::helpers as gen;
+pub use aya_bpf_bindings::helpers as gen;
 pub use gen::*;
 
 use crate::cty::{c_char, c_long, c_void};