Welcome to mirror list, hosted at ThFree Co, Russian Federation.

aeabi_memmove.c « arm « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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)