mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-12 02:05:54 +00:00
9 lines
177 B
C
9 lines
177 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <bpf/libbpf.h>
|
|
|
|
int main(void)
|
|
{
|
|
bpf_program__set_insns(NULL /* prog */, NULL /* new_insns */, 0 /* new_insn_cnt */);
|
|
return 0;
|
|
}
|