summaryrefslogtreecommitdiffstats
path: root/tools/perf/include/bpf/bpf.h
blob: cdfd18b9c318ca0b899cc62e63e1fa662da24399 (plain)
1
2
3
4
5
6
7
8
9
10
// SPDX-License-Identifier: GPL-2.0
#ifndef _PERF_BPF_H
#define _PERF_BPF_H
#define SEC(NAME) __attribute__((section(NAME),  used))

#define license(name) \
char _license[] SEC("license") = #name; \
int _version SEC("version") = LINUX_VERSION_CODE;

#endif /* _PERF_BPF_H */