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
/
tst-initorderb1.c
1
#include <stdio.h>
2
3
extern void start_b1( void ) __attribute__((constructor));
4
extern void finish_b1( void ) __attribute__((destructor));
5
6
void
7
start_b1( void )
8
{
9
printf( "start_b1\n" );
10
}
11
12
void
13
finish_b1( void )
14
{
15
printf( "finish_b1\n" );
16
}