mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-12 08:47:41 +01:00
385576a748
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@29024 a95241bf-73f2-0310-859d-f6bbb57e9c96
34 lines
504 B
C
34 lines
504 B
C
#include <stdio.h>
|
|
#include <dlfcn.h>
|
|
|
|
int bar = -20;
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
int ret = 0;
|
|
void *handle;
|
|
void (*fcn) (void);
|
|
|
|
handle = dlopen("./tmpdir/libdl6a.so", RTLD_GLOBAL|RTLD_LAZY);
|
|
if (!handle)
|
|
{
|
|
printf("dlopen ./tmpdir/libdl6a.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;
|
|
}
|