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
Provide FP_FAST_FMA{,F,L} definitions for x86/x86-64.
[glibc.git]
/
elf
/
tst-dlmopen3.c
blob
26c86b2dcaeaaaab90702b5534c7e2b4402b00a9
1
#include <dlfcn.h>
2
#include <stdio.h>
3
4
5
static int
6
do_test
(
void
)
7
{
8
void
*
h
=
dlmopen
(
LM_ID_NEWLM
,
"$ORIGIN/tst-dlmopen1mod.so"
,
RTLD_LAZY
);
9
if
(
h
==
NULL
)
10
{
11
printf
(
"cannot get handle for %s: %s
\n
"
,
12
"tst-dlmopen1mod.so"
,
dlerror
());
13
return
1
;
14
}
15
16
/* Do not unload. */
17
18
return
0
;
19
}
20
21
#define TEST_FUNCTION do_test ()
22
#include
"../test-skeleton.c"