...

Text file src/github.com/cilium/ebpf/testdata/fwd_decl.c

Documentation: github.com/cilium/ebpf/testdata

     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.
     6int fwd();
     7
     8__section("socket") int call_fwd() {
     9	return fwd();
    10}

View as plain text