Sign in
mojo
/
mojo-tools
/
17e3b04429ce6ad836128e1ceffefd85493ec779
/
.
/
fusl
/
src
/
string
/
arm
/
__aeabi_memmove.c
blob: f7a1ca399813821917ccdd3d5174610f10e18e8f [
file
] [
log
] [
blame
]
#include
<string.h>
#include
"libc.h"
void
__aeabi_memmove
(
void
*
dest
,
const
void
*
src
,
size_t
n
)
{
memmove
(
dest
,
src
,
n
);
}
weak_alias
(
__aeabi_memmove
,
__aeabi_memmove4
);
weak_alias
(
__aeabi_memmove
,
__aeabi_memmove8
);