Fix Arcadia

This commit is contained in:
Alexey Milovidov 2021-03-09 02:22:12 +03:00
parent 7664a3d53e
commit 5f65d46929

View File

@ -23,8 +23,9 @@
#include <common/phdr_cache.h>
#include <ext/scope_guard.h>
#if defined(__x86_64__)
#include <memcpy.h>
/// Custom memcpy - only for x86_64 and not for Arcadia.
#if defined(__x86_64__) && !defined(ARCADIA_BUILD)
#include <memcpy.h> // Y_IGNORE
#else
void init_memcpy() {}
#endif