blob: 106ccaa1a685176b72c7ce62a989cf8467b5d236 [file] [log] [blame]
Martin Storsjö0d403d52020-06-03 14:07:40 +03001/**
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
9void *memcpy(void *restrict dest, const void *restrict src, size_t n) {
10 memcpy_s(dest, n, src, n);
11 return dest;
12}