Sign in
third-party-mirror
/
GRTEv4
/
262be5abc585813b1766119db73641d44ba3741e
/
.
/
google3
/
third_party
/
grte
/
v4_src
/
glibc-2.19
/
elf
/
dep3.c
blob: 3df62820097d35703b0bee541935dd70fa87c9be [
file
] [
log
] [
blame
]
#include
<unistd.h>
extern
int
dep3
(
void
);
static
void
__attribute__
((
constructor
))
init
(
void
)
{
write
(
1
,
"0"
,
1
);
}
static
void
__attribute__
((
destructor
))
fini
(
void
)
{
write
(
1
,
"9\n"
,
2
);
}
int
dep3
(
void
)
{
return
42
;
}