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

aeabi_memcpy.c « arm « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 518830eabf7e1e60105bf6b00846b82f570e86e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <string.h>
#include "aeabi.h"

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

/* Versions of the above which may assume memory alignment.  */
strong_alias (__aeabi_memcpy, __aeabi_memcpy4)
strong_alias (__aeabi_memcpy, __aeabi_memcpy8)