accel/amdxdna: use modern PM helpers
[drm/drm-misc.git] / arch / x86 / lib / memcpy_32.c
bloba29b64befb937472e3cb09c9f77cc3c97ede4bcc
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/string.h>
3 #include <linux/export.h>
5 #undef memcpy
6 #undef memset
7 #undef memmove
9 __visible void *memcpy(void *to, const void *from, size_t n)
11 return __memcpy(to, from, n);
13 EXPORT_SYMBOL(memcpy);
15 __visible void *memset(void *s, int c, size_t count)
17 return __memset(s, c, count);
19 EXPORT_SYMBOL(memset);