xref: /netbsd-src/common/lib/libc/arch/arm/string/strcpy.S (revision 659c8d4b87f4bd6dbbc8499f0f7b8efb0a1088c5)
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