Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
bdd93d52cf43d2991561d70e238bf11e422b794b
/
.
/
ap
/
libc
/
glibc
/
glibc-2.23
/
elf
/
nodel2mod1.c
blob: acddc4cf8b29106c197db27cc61337e9bf8b05ca [
file
] [
log
] [
blame
]
lh
9ed821d
2023-04-07 01:36:19 -0700
[
diff
] [
blame
]
1
#include
<stdlib.h>
2
void
3
foo
(
void
)
4
{
5
exit
(
0
);
6
}
7
8
void
9
__attribute__
((
destructor
))
10
bar
(
void
)
11
{
12
static
int
i
;
13
foo
();
14
++
i
;
15
}
16
void
17
baz
(
void
)
18
{
19
}