xref: /netbsd-src/common/lib/libc/arch/arm/string/memcpy.S (revision 76c7fc5f6b13ed0b1508e6b313e88e59977ed78e)
1/*	$NetBSD: memcpy.S,v 1.8 2015/06/07 11:41:59 joerg Exp $	*/
2
3#include <arm/cdefs.h>
4
5#if !defined(__XSCALE__) || defined(_STANDALONE)
6#include "memcpy_arm.S"
7#else
8#include "memcpy_xscale.S"
9#endif
10
11#if defined(__ARM_EABI__) && !defined(_RUMPKERNEL)
12STRONG_ALIAS(__aeabi_memcpy, memcpy)
13STRONG_ALIAS(__aeabi_memcpy4, memcpy)
14STRONG_ALIAS(__aeabi_memcpy8, memcpy)
15#endif
16