Sign in
cos
/
third_party
/
kernel
/
0eae577cf6b3f6844e1328ed3d4643f7f44dfc19
/
.
/
tools
/
build
/
feature
/
test-libbpf.c
blob: cd9989f521195cba0b8abd2bf3bf9f5a5dbe27ca [
file
]
// SPDX-License-Identifier: GPL-2.0
#include
<bpf/libbpf.h>
#if !defined(LIBBPF_MAJOR_VERSION) || (LIBBPF_MAJOR_VERSION < 1)
#error
At
least libbpf
1.0
is required
for
Linux
tools
.
#endif
int
main
(
void
)
{
return
bpf_object__open
(
"test"
)
?
0
:
-
1
;
}