unplugged-vendor/external/bcc/tests/cc/test_static.c

7 lines
193 B
C
Raw Normal View History

#include "bpf_common.h"
int main(int argc, char **argv) {
void *mod = bpf_module_create_c_from_string("BPF_TABLE(\"array\", int, int, stats, 10);\n", 4, NULL, 0);
return !(mod != NULL);
}