2018-11-21 17:29:44 +00:00
|
|
|
/* 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[])
|
|
|
|
{
|
2019-10-11 00:28:04 +00:00
|
|
|
/* libbpf.h */
|
|
|
|
libbpf_set_print(NULL);
|
2018-11-21 17:29:44 +00:00
|
|
|
|
2019-10-11 00:28:04 +00:00
|
|
|
/* bpf.h */
|
|
|
|
bpf_prog_get_fd_by_id(0);
|
2018-11-21 17:29:44 +00:00
|
|
|
|
2019-10-11 00:28:04 +00:00
|
|
|
/* btf.h */
|
|
|
|
btf__new(NULL, 0);
|
|
|
|
|
|
|
|
return 0;
|
2018-11-21 17:29:44 +00:00
|
|
|
}
|