Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 #include <bpf/bpf.h>
0003 
0004 int main(void)
0005 {
0006     return bpf_map_create(0 /* map_type */, NULL /* map_name */, 0, /* key_size */,
0007                   0 /* value_size */, 0 /* max_entries */, NULL /* opts */);
0008 }