xref: /netbsd-src/common/lib/libc/arch/arm/string/strlcat.S (revision ba65fde2d7fefa7d39838fa5fa855e62bd606b5e)
1/* $NetBSD: strlcat.S,v 1.1 2013/01/23 07:56:09 matt 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