Merge tag 'drm-misc-fixes-2022-05-26' of git://anongit.freedesktop.org/drm/drm-misc...
[platform/kernel/linux-starfive.git] / tools / build / feature / test-libbpf-bpf_prog_load.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <bpf/bpf.h>
3
4 int main(void)
5 {
6         return bpf_prog_load(0 /* prog_type */, NULL /* prog_name */,
7                              NULL /* license */, NULL /* insns */,
8                              0 /* insn_cnt */, NULL /* opts */);
9 }