mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-22 05:16:12 +03:00
base: Fix OpenWrt build with use_allocator_shim=false
This commit is contained in:
parent
4e1562642a
commit
51b5c70c6a
@ -18,6 +18,13 @@
|
||||
#include "base/threading/thread_restrictions.h"
|
||||
#include "build/build_config.h"
|
||||
|
||||
#if !BUILDFLAG(USE_ALLOCATOR_SHIM) && defined(LIBC_GLIBC)
|
||||
extern "C" {
|
||||
void* __libc_malloc(size_t size);
|
||||
void __libc_free(void* ptr);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
namespace base {
|
||||
|
||||
namespace {
|
||||
|
Loading…
Reference in New Issue
Block a user