diff options
Diffstat (limited to 'tools/build/feature/test-libbpf.c')
-rw-r--r-- | tools/build/feature/test-libbpf.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/build/feature/test-libbpf.c b/tools/build/feature/test-libbpf.c new file mode 100644 index 000000000..a508756cf --- /dev/null +++ b/tools/build/feature/test-libbpf.c @@ -0,0 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0 +#include <bpf/libbpf.h> + +int main(void) +{ + return bpf_object__open("test") ? 0 : -1; +} |