strlcat.S revision 1.3
1/* $NetBSD: strlcat.S,v 1.3 2017/01/13 13:14:54 christos Exp $ */
2
3#include <machine/asm.h>
4
5#ifdef _LIBC
6WEAK_ALIAS(strlcat, _strlcat)
7#endif
8
9#if defined(_STANDALONE) && 0	/* arm version is always smaller */
10#include "strlcat_naive.S"
11#else
12#include "strlcat_arm.S"
13#endif
14