projects
/
platform
/
upstream
/
glibc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
rtld: properly handle root directory in load path (bug 30435)
[platform/upstream/glibc.git]
/
elf
/
order2mod2.c
1
#include <stdio.h>
2
3
extern int foo (void);
4
extern int bar (void);
5
6
void
7
__attribute__ ((constructor))
8
init (void)
9
{
10
(void) (foo () - bar ());
11
}
12
13
static void
14
__attribute__ ((destructor))
15
fini (void)
16
{
17
putchar ('2');
18
}