repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Move BZ#11261 from 2.18 to 2.16 bug list.
[glibc.git]
/
elf
/
tst-order-a1.c
blob
f1612571422dbf844db6a4f9ab010e0dfdc1c82d
1
#include <stdio.h>
2
3
extern
void
start_a1
(
void
)
__attribute__
((
constructor
));
4
extern
void
finish_a1
(
void
)
__attribute__
((
destructor
));
5
6
void
7
start_a1
(
void
)
8
{
9
printf
(
"start_a1
\n
"
);
10
}
11
12
void
13
finish_a1
(
void
)
14
{
15
printf
(
"finish_a1
\n
"
);
16
}