mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-22 07:05:54 +00:00
10 lines
230 B
C
10 lines
230 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
#include <bpf/bpf.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
return bpf_prog_load(0 /* prog_type */, NULL /* prog_name */,
|
||
|
NULL /* license */, NULL /* insns */,
|
||
|
0 /* insn_cnt */, NULL /* opts */);
|
||
|
}
|