projects
/
kopensolaris-gnu
/
glibc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
d780bef0777f65cc0ada8351bbbc35b10de881ed
[kopensolaris-gnu/glibc.git]
/
elf
/
testobj4.c
1
#include <dlfcn.h>
2
#include <stdlib.h>
3
4
int
5
obj4func1 (int a __attribute__ ((unused)))
6
{
7
return 55;
8
}
9
10
int
11
obj4func2 (int a)
12
{
13
return foo (a) + 43;
14
}
15
16
int
17
preload (int a)
18
{
19
int (*fp) (int) = dlsym (RTLD_NEXT, "preload");
20
if (fp != NULL)
21
return fp (a) + 10;
22
return 10;
23
}