kernel_samsung_a53x/tools/perf/examples/bpf/hello.c
2024-06-15 16:02:09 -03:00

9 lines
113 B
C
Executable file

#include <stdio.h>
int syscall_enter(openat)(void *args)
{
puts("Hello, world\n");
return 0;
}
license(GPL);