ClickHouse/base/glibc-compatibility/memcpy/memcpy.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
198 B
C++
Raw Permalink Normal View History

2021-03-08 10:19:25 +00:00
#include "memcpy.h"
__attribute__((no_sanitize("coverage")))
2021-03-08 10:19:25 +00:00
extern "C" void * memcpy(void * __restrict dst, const void * __restrict src, size_t size)
{
2021-03-13 07:39:43 +00:00
return inline_memcpy(dst, src, size);
2021-03-08 10:19:25 +00:00
}