Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v6.13-rc5 10 lines 224 B view raw
1/* SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) */ 2 3#define SEC(name) __attribute__((section(name), used)) 4 5/* Sample program which should always load for testing control paths. */ 6SEC("xdp") 7int func() 8{ 9 return 0; 10}