1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-30 00:00:11 +01:00

add _intel_fast_memmove

This commit is contained in:
Steffen Vogel 2022-02-14 10:03:19 +01:00 committed by Steffen Vogel
parent b016cba7d0
commit db09e26536

View file

@ -44,3 +44,8 @@ int _intel_fast_memcmp(const void *s1, const void *s2, size_t n)
{
return memcmp(s1, s2, n);
}
void * _intel_fast_memmove(void *dest, const void *src, size_t num)
{
return memmove(dest, src, num);
}