Note: File does not exist in v4.10.11.
1// SPDX-License-Identifier: GPL-2.0
2#include <bpf/bpf.h>
3
4int 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}