mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2025-04-03 13:53:37 +03:00
Fix OpenWrt build with use_allocator_shim=false
This commit is contained in:
parent
1a43eb5ae7
commit
f6f147e21d
1 changed files with 7 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue