12345678910111213141516171819202122232425262728293031323334 |
- #include <string.h>
- libc_hidden_proto(memcpy)
- void
- __aeabi_memcpy (void *dest, const void *src, size_t n)
- {
- memcpy (dest, src, n);
- }
- strong_alias (__aeabi_memcpy, __aeabi_memcpy4)
- strong_alias (__aeabi_memcpy, __aeabi_memcpy8)
|