1
0
Fork 0
android_kernel_rockchip_tart/tools/testing/selftests/net/sample_ret0.bpf.c
2025-06-27 00:32:42 -05:00

10 lines
224 B
C

/* SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) */
#define SEC(name) __attribute__((section(name), used))
/* Sample program which should always load for testing control paths. */
SEC("xdp")
int func()
{
return 0;
}