xref: /linux/tools/testing/selftests/bpf/progs/kfunc_call_destructive.c (revision d1d7f01f7cd35e16c6bcef5a0e31988b5c9980f9)
1 // SPDX-License-Identifier: GPL-2.0
2 #include <vmlinux.h>
3 #include <bpf/bpf_helpers.h>
4 #include "../test_kmods/bpf_testmod_kfunc.h"
5 
6 SEC("tc")
7 int kfunc_destructive_test(void)
8 {
9 	bpf_kfunc_call_test_destructive();
10 	return 0;
11 }
12 
13 char _license[] SEC("license") = "GPL";
14