mirror of https://git.musl-libc.org/git/musl
Browse Source
these functions are part of the ARM EABI, meaning compilers may generate references to them. known versions of gcc do not use them, but llvm does. they are not provided by libgcc, and the de facto standard seems to be that libc provides them.master
committed by
Rich Felker
4 changed files with 36 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||
#include <string.h> |
|||
#include "libc.h" |
|||
|
|||
void __aeabi_memclr(void *dest, size_t n) |
|||
{ |
|||
memset(dest, 0, n); |
|||
} |
|||
weak_alias(__aeabi_memclr, __aeabi_memclr4); |
|||
weak_alias(__aeabi_memclr, __aeabi_memclr8); |
|||
@ -0,0 +1,9 @@ |
|||
#include <string.h> |
|||
#include "libc.h" |
|||
|
|||
void __aeabi_memcpy(void *restrict dest, const void *restrict src, size_t n) |
|||
{ |
|||
memcpy(dest, src, n); |
|||
} |
|||
weak_alias(__aeabi_memcpy, __aeabi_memcpy4); |
|||
weak_alias(__aeabi_memcpy, __aeabi_memcpy8); |
|||
@ -0,0 +1,9 @@ |
|||
#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); |
|||
@ -0,0 +1,9 @@ |
|||
#include <string.h> |
|||
#include "libc.h" |
|||
|
|||
void __aeabi_memset(void *dest, size_t n, int c) |
|||
{ |
|||
memset(dest, c, n); |
|||
} |
|||
weak_alias(__aeabi_memset, __aeabi_memset4); |
|||
weak_alias(__aeabi_memset, __aeabi_memset8); |
|||
Loading…
Reference in new issue