summaryrefslogtreecommitdiff
path: root/common/lib/libc/arch/arm/string/strcpy.S
blob: 9585c97a16128b7c31d3e4efa45a15f3735f8dd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* $NetBSD: strcpy.S,v 1.5 2013/08/20 21:35:24 matt Exp $ */

#if defined(_STANDALONE)
#ifdef __thumb__
#include "strcpy_thumb.S"
#else
#include "strcpy_naive.S"
#endif
#else
#include "strcpy_arm.S"
#endif