blob: f224e12394dd6e16e9e36689334210b889d0742c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include <stdio.h>
#include <dlfcn.h>
int bar = -20;
int
main (void)
{
int ret = 0;
void *handle;
void (*fcn) (void);
handle = dlopen("./tmpdir/libdl1.so", RTLD_GLOBAL|RTLD_LAZY);
if (!handle)
{
printf("dlopen ./tmpdir/libdl1.so: %s\n", dlerror ());
return 1;
}
fcn = (void (*)(void)) dlsym(handle, "foo");
if (!fcn)
{
printf("dlsym foo: %s\n", dlerror ());
ret += 1;
}
else
{
(*fcn) ();
}
dlclose (handle);
return ret;
}
|