1 /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ 2 3 #ifndef __BTF_HELPERS_H 4 #define __BTF_HELPERS_H 5 6 #include <bpf/libbpf.h> 7 8 int ensure_core_btf(struct bpf_object_open_opts *opts); 9 void cleanup_core_btf(struct bpf_object_open_opts *opts); 10 11 #endif /* __BTF_HELPERS_H */ 12