xref: /minix3/common/lib/libc/arch/arm/string/strcpy.S (revision 84d9c625bfea59e274550651111ae9edfdc40fbd)
1*84d9c625SLionel Sambuc/* $NetBSD: strcpy.S,v 1.5 2013/08/20 21:35:24 matt Exp $ */
2*84d9c625SLionel Sambuc
3*84d9c625SLionel Sambuc#if defined(_STANDALONE)
4*84d9c625SLionel Sambuc#ifdef __thumb__
5*84d9c625SLionel Sambuc#include "strcpy_thumb.S"
6*84d9c625SLionel Sambuc#else
7*84d9c625SLionel Sambuc#include "strcpy_naive.S"
8*84d9c625SLionel Sambuc#endif
9*84d9c625SLionel Sambuc#else
10*84d9c625SLionel Sambuc#include "strcpy_arm.S"
11*84d9c625SLionel Sambuc#endif
12