brintos

brintos / linux-shallow public Read only

0
0
Text · 185 B · e6a75f8 Raw
12 lines · c
1// SPDX-License-Identifier: GPL-2.02#include <linux/bpf.h>3#include <bpf/bpf_helpers.h>4 5SEC("freplace")6int freplace_prog(void)7{8	return 0;9}10 11char _license[] SEC("license") = "GPL";12