TrustedFirmware Git Browser
Code Review
Sign In
review.trustedfirmware.org
/
hafnium
/
third_party
/
linux.git
/
0f672f6c0b52b7b0700b0915c72b540721af4465
/
.
/
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
);