Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.2-rc4 19 lines 364 B view raw
1// SPDX-License-Identifier: GPL-2.0 2#include <linux/string.h> 3#include <linux/export.h> 4 5#undef memcpy 6#undef memset 7#undef memmove 8 9__visible void *memcpy(void *to, const void *from, size_t n) 10{ 11 return __memcpy(to, from, n); 12} 13EXPORT_SYMBOL(memcpy); 14 15__visible void *memset(void *s, int c, size_t count) 16{ 17 return __memset(s, c, count); 18} 19EXPORT_SYMBOL(memset);