mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 22:21:42 +00:00
28beb730ee
Use libtracefs as package name to lookup the CFLAGS for libtracefs. This makes it possible to use the distro specific path as include path for the header file. Link: https://lkml.kernel.org/r/20240617-rtla-build-v1-1-6882c34678e8@suse.de Cc: Daniel Bristot de Oliveira <bristot@kernel.org> Signed-off-by: Daniel Wagner <dwagner@suse.de> Signed-off-by: Daniel Bristot de Oliveira <bristot@kernel.org>
11 lines
189 B
C
11 lines
189 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <tracefs.h>
|
|
|
|
int main(void)
|
|
{
|
|
struct tracefs_instance *inst = tracefs_instance_create("dummy");
|
|
|
|
tracefs_instance_destroy(inst);
|
|
return 0;
|
|
}
|