xref: /linux/tools/testing/selftests/bpf/progs/clone_attach_btf_id.c (revision aec2f682d47c54ef434b2d440992626d80b1ebdc)
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2025 Meta */
3 #include <linux/bpf.h>
4 #include <bpf/bpf_helpers.h>
5 #include <bpf/bpf_tracing.h>
6 
7 char _license[] SEC("license") = "GPL";
8 
9 SEC("fentry/bpf_fentry_test1")
10 int BPF_PROG(fentry_handler, int a)
11 {
12 	return 0;
13 }
14