• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "bpf_common.h"
2 
main(int argc,char ** argv)3 int main(int argc, char **argv) {
4   void *mod = bpf_module_create_c_from_string("BPF_TABLE(\"array\", int, int, stats, 10);\n", 4, NULL, 0);
5   return !(mod != NULL);
6 }
7