1 | #pragma once |
---|---|
2 | |
3 | #ifdef __cplusplus |
4 | extern "C" |
5 | { |
6 | #endif |
7 | |
8 | #include "impl/FastMemcpy.h" |
9 | |
10 | void * __attribute__((__weak__)) memcpy(void * __restrict destination, const void * __restrict source, size_t size) |
11 | { |
12 | return memcpy_fast(destination, source, size); |
13 | } |
14 | |
15 | #ifdef __cplusplus |
16 | } |
17 | #endif |
18 |