Sign in
third-party-mirror
/
GRTEv4
/
262be5abc585813b1766119db73641d44ba3741e
/
.
/
google3
/
third_party
/
grte
/
v4_src
/
glibc-2.19
/
elf
/
tst-initordera4.c
blob: 70b9f5e3921553df950a2cf178ed6e74372b9012 [
file
] [
log
] [
blame
]
#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"
);
}