015eee6269830e8e6e2150c7d9dbf592bfd66e96
[lttng-tools.git] / tests / regression / ust / ust-dl / prog.c
1 #include <dlfcn.h>
2
3 int main()
4 {
5 void *handle;
6 int (*foo)();
7
8 handle = dlopen("libfoo.so", RTLD_LAZY);
9 foo = dlsym(handle, "foo");
10
11 (*foo)();
12
13 dlclose(handle);
14
15 return 0;
16 }
This page took 0.028618 seconds and 3 git commands to generate.