mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-16 12:44:42 +00:00
8 lines
198 B
C++
8 lines
198 B
C++
#include "memcpy.h"
|
|
|
|
__attribute__((no_sanitize("coverage")))
|
|
extern "C" void * memcpy(void * __restrict dst, const void * __restrict src, size_t size)
|
|
{
|
|
return inline_memcpy(dst, src, size);
|
|
}
|