forked from Minki/linux
8c4905b995
Wrap headers in extern "C", to turn off C++ mangling. This simplifies including libbpf in c++ and linking against it. v2 changes: * do the same for btf.h v3 changes: * test_libbpf.cpp to test for possible future c++ breakages Signed-off-by: Stanislav Fomichev <sdf@google.com> Acked-by: Alexei Starovoitov <ast@kernel.org> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
19 lines
361 B
C++
19 lines
361 B
C++
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
|
|
#include "libbpf.h"
|
|
#include "bpf.h"
|
|
#include "btf.h"
|
|
|
|
/* do nothing, just make sure we can link successfully */
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
/* libbpf.h */
|
|
libbpf_set_print(NULL, NULL, NULL);
|
|
|
|
/* bpf.h */
|
|
bpf_prog_get_fd_by_id(0);
|
|
|
|
/* btf.h */
|
|
btf__new(NULL, 0, NULL);
|
|
}
|