repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update.
[glibc.git]
/
elf
/
dep4.c
blob
9aad67d65927876052430ac52cfdd87347a1b3fe
1
#include <unistd.h>
2
3
extern
int
dep3
(
void
);
4
5
static void
6
__attribute__
((
constructor
))
7
init
(
void
)
8
{
9
write
(
1
,
"1"
,
1
);
10
}
11
12
static void
13
__attribute__
((
destructor
))
14
fini
(
void
)
15
{
16
write
(
1
,
"8"
,
1
);
17
}
18
19
int
20
dep4
(
void
)
21
{
22
return
dep3
();
23
}