TrustedFirmware Git Browser
Code Review
Sign In
review.trustedfirmware.org
/
hafnium
/
third_party
/
linux.git
/
b4b6d4a02fa8aa8187d426b508fb7f3b69df0dcc
/
.
/
tools
/
perf
/
examples
/
bpf
/
hello.c
blob: cf3c2fdc7f79c7dcc37fb3848ed4c1e55d0673c9 [
file
] [
log
] [
blame
]
Andrew Scull
b4b6d4a
2019-01-02 15:54:55 +0000
[
diff
] [
blame^
]
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
);