#include <linux/config.h>
#include <linux/string.h>
#undef memcpy
#undef memset
7 void * memcpy(void * to, const void * from, size_t n)
{
#ifdef CONFIG_X86_USE_3DNOW
return __memcpy3d(to, from, n);
#else
12 return __memcpy(to, from, n);
#endif
}
16 void * memset(void * s, int c, size_t count)
{
18 return __memset(s, c, count);
}