Sign in
third-party-mirror
/
GRTEv5
/
refs/heads/master
/
.
/
google3
/
third_party
/
grte
/
v5_src
/
glibc-2.27
/
elf
/
tst-initordera2.c
blob: a5a9b42ff62c4c986b5b5c210d25180cbda179ca [
file
] [
log
] [
blame
] [
edit
]
#include
<stdio.h>
extern
void
start_a2
(
void
)
__attribute__
((
constructor
));
extern
void
finish_a2
(
void
)
__attribute__
((
destructor
));
void
start_a2
(
void
)
{
printf
(
"start_a2\n"
);
}
void
finish_a2
(
void
)
{
printf
(
"finish_a2\n"
);
}