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