nt9856x/BSP/linux-kernel/tools/perf/examples/bpf/hello.c
2023-03-28 15:07:53 +08:00

10 lines
113 B
C

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