strlcat.S revision 1.1.6.2
1/* $NetBSD: strlcat.S,v 1.1.6.2 2013/02/25 00:23:58 tls Exp $ */
2
3#include <machine/asm.h>
4
5#ifdef _LIBC
6WEAK_ALIAS(strlcat, _strlcat)
7#include "namespace.h"
8#endif
9
10#ifdef _STANDALONE
11#include "strlcat_naive.S"
12#else
13#include "strlcat_arm.S"
14#endif
15