mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 11:33:46 +00:00
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);
|
||
|
}
|