Fix make-array transforms.
[sbcl.git] / tools-for-build / os-provides-dladdr-test.c
1 /* test to build and run so that we know if we have dladdr
2  */
3
4 /* bloody FSF dlcfn.h won't give us dladdr without this */
5 #define _GNU_SOURCE
6
7 #include <stdlib.h>
8 #include <dlfcn.h>
9
10 int main ()
11 {
12    void * handle = dlopen((void*)0, RTLD_GLOBAL | RTLD_NOW);
13    void * addr = dlsym(handle, "printf");
14    Dl_info * info = (Dl_info*) malloc(sizeof(Dl_info));
15    if (dladdr(addr, info) == 0) {
16        return 1;
17    } else {
18        return 104;
19    }
20 }