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
chunksize(x) => x->size
[glibc.git]
/
elf
/
testobj2.c
blob
6514c5639390de8435e84593f55a7e263e7f1a93
1
#include <dlfcn.h>
2
#include <stdlib.h>
3
4
#include
"testobj.h"
5
6
int
7
obj2func1
(
int
a
__attribute__
((
unused
)))
8
{
9
return
43
;
10
}
11
12
int
13
obj2func2
(
int
a
)
14
{
15
return
obj1func1
(
a
) +
10
;
16
}
17
18
int
19
preload
(
int
a
)
20
{
21
int
(*
fp
) (
int
) =
dlsym
(
RTLD_NEXT
,
"preload"
);
22
if
(
fp
!=
NULL
)
23
return
fp
(
a
) +
10
;
24
return
10
;
25
}