Sign in
nest-open-source
/
nest-cam
/
v366
/
glibc
/
refs/heads/main
/
.
/
elf
/
dep3.c
blob: 3df62820097d35703b0bee541935dd70fa87c9be [
file
] [
log
] [
blame
] [
edit
]
#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
;
}