xref: /linux/tools/testing/selftests/bpf/progs/tracing_multi_bench.c (revision 68f4e480b089abae26fbab0c38c3df3cbac3d79d)
1 // SPDX-License-Identifier: GPL-2.0
2 #include <vmlinux.h>
3 #include <bpf/bpf_helpers.h>
4 #include <bpf/bpf_tracing.h>
5 
6 char _license[] SEC("license") = "GPL";
7 
8 SEC("fentry.multi")
9 int BPF_PROG(bench)
10 {
11 	return 0;
12 }
13