// SPDX-License-Identifier: GPL-2.0 #include #include #include char _license[] SEC("license") = "GPL"; SEC("fentry.multi") int BPF_PROG(test_fentry) { return 0; } SEC("fentry.multi.s") int BPF_PROG(test_fentry_s) { return 0; }