Sign in
third-party-mirror
/
GRTEv4
/
262be5abc585813b1766119db73641d44ba3741e
/
.
/
google3
/
third_party
/
grte
/
v4_src
/
glibc-2.19
/
elf
/
tst-order-b1.c
blob: 993ea3fe30768425d7518bcc38f029c96a5dae02 [
file
] [
log
] [
blame
]
#include
<stdio.h>
extern
void
start_b1
(
void
)
__attribute__
((
constructor
));
extern
void
finish_b1
(
void
)
__attribute__
((
destructor
));
void
start_b1
(
void
)
{
printf
(
"start_b1\n"
);
}
void
finish_b1
(
void
)
{
printf
(
"finish_b1\n"
);
}