1 /* test to build and run so that we know if we have dladdr
4 /* bloody FSF dlcfn.h won't give us dladdr without this */
11 void * handle
= dlopen((void*)0, RTLD_GLOBAL
| RTLD_NOW
);
12 void * addr
= dlsym(handle
, "printf");
13 Dl_info
* info
= (Dl_info
*) malloc(sizeof(Dl_info
));
15 if (strcmp(info
->dli_sname
, "printf")) {