3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-01-31 23:32:17 +00:00
Brooklyn/tools/perf/examples/bpf/hello.c

10 lines
113 B
C
Raw Normal View History

2021-05-26 19:09:36 +00:00
#include <stdio.h>
int syscall_enter(openat)(void *args)
{
puts("Hello, world\n");
return 0;
}
license(GPL);