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