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