1 // SPDX-License-Identifier: GPL-2.0
2 #include <bpf/bpf.h>
3 
main(void)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 }
10