diff --git a/include/bx/os.h b/include/bx/os.h index d63cc51..a1211c1 100644 --- a/include/bx/os.h +++ b/include/bx/os.h @@ -65,7 +65,7 @@ namespace bx #if BX_PLATFORM_WINDOWS return (void*)GetProcAddress( (HMODULE)_handle, _symbol); #else - return dlsym(_handle, _symbol); + return ::dlsym(_handle, _symbol); #endif // BX_PLATFORM_ }