diff options
-rw-r--r-- | base/sys_info_android.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/sys_info_android.cc b/base/sys_info_android.cc index 829053f..b62aed9 100644 --- a/base/sys_info_android.cc +++ b/base/sys_info_android.cc @@ -47,7 +47,7 @@ static base::LazyInstance<base::internal::LazySysInfoValue< // from Chrome we work around this by defining a weak stub here, which uses // dlsym to but ensures that Chrome uses the real system // implementatation when loaded. http://crbug.com/392191. -int __system_property_get(const char* name, char* value) { +BASE_EXPORT int __system_property_get(const char* name, char* value) { return g_lazy_real_system_property_get.Get().value()(name, value); } |