Martin Storsjö | 0d403d5 | 2020-06-03 14:07:40 +0300 | [diff] [blame] | 1 | /** |
2 | * This file has no copyright assigned and is placed in the Public Domain. | ||||
3 | * This file is part of the mingw-w64 runtime package. | ||||
4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. | ||||
5 | */ | ||||
6 | |||||
7 | #include <string.h> | ||||
8 | |||||
9 | void *memcpy(void *restrict dest, const void *restrict src, size_t n) { | ||||
10 | memcpy_s(dest, n, src, n); | ||||
11 | return dest; | ||||
12 | } |