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

#define STRLCPY

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