xref: /netbsd-src/common/lib/libc/arch/arm/string/strlcat.S (revision 659c8d4b87f4bd6dbbc8499f0f7b8efb0a1088c5)
1/* $NetBSD: strlcat.S,v 1.4 2017/01/14 03:00:13 christos Exp $ */
2
3#include <machine/asm.h>
4
5#ifdef _LIBC
6WEAK_ALIAS(strlcat, _strlcat)
7#define strlcat _strlcat
8#endif
9
10#if defined(_STANDALONE) && 0	/* arm version is always smaller */
11#include "strlcat_naive.S"
12#else
13#include "strlcat_arm.S"
14#endif
15