Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
bdd93d52cf43d2991561d70e238bf11e422b794b
/
.
/
ap
/
libc
/
glibc
/
glibc-2.23
/
elf
/
tst-order-a4.c
blob: 70b9f5e3921553df950a2cf178ed6e74372b9012 [
file
] [
log
] [
blame
]
#include
<stdio.h>
extern
void
start_a4
(
void
)
__attribute__
((
constructor
));
extern
void
finish_a4
(
void
)
__attribute__
((
destructor
));
void
start_a4
(
void
)
{
printf
(
"start_a4\n"
);
}
void
finish_a4
(
void
)
{
printf
(
"finish_a4\n"
);
}