aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/perf/examples/bpf/hello.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tools/perf/examples/bpf/hello.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/perf/examples/bpf/hello.c b/tools/perf/examples/bpf/hello.c
deleted file mode 100644
index cf3c2fdc7f79..000000000000
--- a/tools/perf/examples/bpf/hello.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <stdio.h>
-
-int syscall_enter(openat)(void *args)
-{
- puts("Hello, world\n");
- return 0;
-}
-
-license(GPL);