#include // dlsym #include // fprintf #include // 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); }