xref: /netbsd-src/common/lib/libc/arch/arm/string/strcpy.S (revision 122b5006ee1bd67145794b4cde92f4fe4781a5ec)
1/* $NetBSD: strcpy.S,v 1.5 2013/08/20 21:35:24 matt 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