github.com/cilium/ebpf@v0.15.1-0.20240517100537-8079b37aa138/testdata/fwd_decl.c (about) 1 /* This file excercises the ELF loader. It is not a valid BPF program. */ 2 3 #include "common.h" 4 5 // Forward function declaration, never implemented. 6 int fwd(); 7 8 __section("socket") int call_fwd() { 9 return fwd(); 10 }