// SPDX-License-Identifier: GPL-2.0 #include #include #include SEC("fentry/bpf_testmod_trampoline_count_test") int BPF_PROG(fentry_test) { return 0; } SEC("fmod_ret/bpf_testmod_trampoline_count_test") int BPF_PROG(fmod_ret_test, int ret) { return 0; } SEC("fexit/bpf_testmod_trampoline_count_test") int BPF_PROG(fexit_test, int ret) { return 0; } char _license[] SEC("license") = "GPL";