xref: /linux/tools/testing/selftests/bpf/progs/freplace_dead_global_func.c (revision 2851f57d2dabd76a79365b78fedc80d2ed3ac2d8)
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/bpf.h>
3 #include <bpf/bpf_helpers.h>
4 
5 SEC("freplace")
6 int freplace_prog(void)
7 {
8 	return 0;
9 }
10 
11 char _license[] SEC("license") = "GPL";
12