strcpy.S revision 1.4.2.3 1 /* $NetBSD: strcpy.S,v 1.4.2.3 2014/05/22 11:26:28 yamt Exp $ */
2
3 #if defined(_STANDALONE)
4 #ifdef __thumb__
5 #include "strcpy_thumb.S"
6 #else
7 #include "strcpy_naive.S"
8 #endif
9 #else
10 #include "strcpy_arm.S"
11 #endif
12