Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
9ed821d7e5d875a3395740a9cc2545671fa429b7
/
.
/
ap
/
libc
/
glibc
/
glibc-2.22
/
elf
/
unload4mod4.c
blob: ba5a144d3822d46266463eaae776edf10f9f27da [
file
] [
log
] [
blame
]
lh
9ed821d
2023-04-07 01:36:19 -0700
[
diff
] [
blame^
]
1
#include
<stdio.h>
2
#include
<stdlib.h>
3
4
int
5
__attribute__
((
noinline
))
6
baz
(
int
x
)
7
{
8
abort
();
9
}
10
11
int
12
bar
(
int
x
)
13
{
14
puts
(
"in bar"
);
15
return
baz
(
x
+
1
)
+
2
;
16
}