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
Handle long lines in host lookups in the right place.
[glibc.git]
/
elf
/
dep4.c
blob
c496d6f531e61d544b958e1649455a8d33eb5e25
1
#include <unistd.h>
2
3
extern
int
dep3
(
void
);
4
extern
int
dep4
(
void
);
5
6
static void
7
__attribute__
((
constructor
))
8
init
(
void
)
9
{
10
write
(
1
,
"1"
,
1
);
11
}
12
13
static void
14
__attribute__
((
destructor
))
15
fini
(
void
)
16
{
17
write
(
1
,
"8"
,
1
);
18
}
19
20
int
21
dep4
(
void
)
22
{
23
return
dep3
();
24
}