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