]> Git Repo - linux.git/blob - tools/perf/examples/bpf/hello.c
KVM: x86: fix CPUID entries returned by KVM_GET_CPUID2 ioctl
[linux.git] / tools / perf / examples / bpf / hello.c
1 #include <stdio.h>
2
3 int syscall_enter(openat)(void *args)
4 {
5         puts("Hello, world\n");
6         return 0;
7 }
8
9 license(GPL);
This page took 0.026547 seconds and 4 git commands to generate.