blob: 0aba24599e8f5d36152f8b442bdab81f1ca9b184 (
plain) (
tree)
|
|
#include <dlfcn.h> /* dlsym */
#include <stdio.h> /* fprintf */
#include <stdlib.h> /* getenv */
void *dlvsym(void *handle, char *symbol, char *version)
{
if (getenv("GLIBC_FAKE_DEBUG")) {
fprintf(stderr, "symbol %s with version %s is being redirected",
symbol, version);
}
return dlsym(handle, symbol);
}
|