Linux Audio

Check our new training course

Linux kernel drivers training

May 6-19, 2025
Register
Loading...
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}