mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 19:45:11 +00:00
7c9bbe4c29
(cherry picked from commit 8ffa4d395c
)
7 lines
170 B
C
7 lines
170 B
C
#include "FastMemcpy.h"
|
|
|
|
void * memcpy(void * __restrict destination, const void * __restrict source, size_t size)
|
|
{
|
|
return memcpy_fast(destination, source, size);
|
|
}
|