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
* sysdeps/unix/sysv/linux/configure.in: Bump minimal kernel
[glibc.git]
/
dlfcn
/
tststatic.c
blob
00695be7b1cc21468093f120188aea8f1b0cf4bd
1
#include <dlfcn.h>
2
#include <stdio.h>
3
#include <stdlib.h>
4
5
int
6
main
(
void
)
7
{
8
void
*
handle
;
9
int
(*
test
) (
int
);
10
int
res
;
11
12
handle
=
dlopen
(
"modstatic.so"
,
RTLD_LAZY
);
13
if
(
handle
==
NULL
)
14
{
15
printf
(
"%s
\n
"
,
dlerror
());
16
exit
(
1
);
17
}
18
19
test
=
dlsym
(
handle
,
"test"
);
20
if
(
test
==
NULL
)
21
{
22
printf
(
"%s
\n
"
,
dlerror
());
23
exit
(
1
);
24
}
25
26
res
=
test
(
2
);
27
if
(
res
!=
4
)
28
{
29
printf
(
"Got %i, expected 4
\n
"
,
res
);
30
exit
(
1
);
31
}
32
33
dlclose
(
handle
);
34
return
0
;
35
}