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
string: Fix tester build with fortify enable with gcc 6
[glibc.git]
/
elf
/
testobj6.c
blob
84da4c9e22cc422bb6916f003ef00b414cbf9216
1
#include <stdio.h>
2
3
#include
"testobj.h"
4
5
int
6
obj6func1
(
int
a
__attribute__
((
unused
)))
7
{
8
return
77
;
9
}
10
11
int
12
obj6func2
(
int
a
)
13
{
14
return
foo
(
a
) +
46
;
15
}
16
17
int
18
preload
(
int
a
)
19
{
20
printf
(
"testobj6 preload
\n
"
);
21
return
a
;
22
}