diff --git a/renderdoc/os/posix/android/android_hook.cpp b/renderdoc/os/posix/android/android_hook.cpp index 898c1a9a5..86e12d048 100644 --- a/renderdoc/os/posix/android/android_hook.cpp +++ b/renderdoc/os/posix/android/android_hook.cpp @@ -24,10 +24,13 @@ #include "os/posix/posix_hook.h" +#include + void PosixHookInit() { } void PosixHookLibrary(const char *name, dlopenCallback cb) { -} \ No newline at end of file + cb(dlopen(name, RTLD_NOW)); +}