14 lines
560 B
Diff
14 lines
560 B
Diff
diff --git lib/interception/interception_linux.cc lib/interception/interception_linux.cc
|
|
index 6e908ac..7fcf2a6 100644
|
|
--- lib/interception/interception_linux.cc
|
|
+++ lib/interception/interception_linux.cc
|
|
@@ -24,7 +24,7 @@ bool GetRealFunctionAddress(const char *func_name, uptr *func_addr,
|
|
return real == wrapper;
|
|
}
|
|
|
|
-#if !defined(__ANDROID__) // android does not have dlvsym
|
|
+#if 0 // !defined(__ANDROID__) // android does not have dlvsym
|
|
void *GetFuncAddrVer(const char *func_name, const char *ver) {
|
|
return dlvsym(RTLD_NEXT, func_name, ver);
|
|
}
|