blob: a1a18f60d0f78bb37d550f18a46b979b71f80b21 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* $NetBSD: memmove.c,v 1.2 2013/12/02 21:21:33 joerg Exp $ */
#define MEMMOVE
#include "bcopy.c"
#if defined(__ARM_EABI__)
__strong_alias(__aeabi_memmove, memmove)
__strong_alias(__aeabi_memmove4, memmove)
__strong_alias(__aeabi_memmove8, memmove)
#endif
|