summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys/arm/aeabi_memmove.c
blob: f80cd3a4a47babfef6530234a4ead742229b6248 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <string.h>
#include "aeabi.h"

/* Copy memory like memmove, but no return value required.  */
void
__aeabi_memmove (void *dest, const void *src, size_t n)
{
  memmove (dest, src, n);
}

/* Versions of the above which may assume memory alignment.  */
strong_alias (__aeabi_memmove, __aeabi_memmove4)
strong_alias (__aeabi_memmove, __aeabi_memmove8)