Sign in
third-party-mirror
/
GRTEv4
/
262be5abc585813b1766119db73641d44ba3741e
/
.
/
google3
/
third_party
/
grte
/
v4_src
/
glibc-2.19
/
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"
);
}