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:
parent
b016cba7d0
commit
db09e26536
1 changed files with 5 additions and 0 deletions
|
@ -44,3 +44,8 @@ int _intel_fast_memcmp(const void *s1, const void *s2, size_t n)
|
||||||
{
|
{
|
||||||
return memcmp(s1, s2, n);
|
return memcmp(s1, s2, n);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void * _intel_fast_memmove(void *dest, const void *src, size_t num)
|
||||||
|
{
|
||||||
|
return memmove(dest, src, num);
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue