Files
netbsd/common/lib/libc/arch/arm/string/strlcat.S
2014-01-15 10:53:42 +01:00

15 lines
294 B
ArmAsm

/* $NetBSD: strlcat.S,v 1.2 2013/08/20 21:08:54 matt Exp $ */
#include <machine/asm.h>
#ifdef _LIBC
WEAK_ALIAS(strlcat, _strlcat)
#include "namespace.h"
#endif
#if defined(_STANDALONE) && 0 /* arm version is always smaller */
#include "strlcat_naive.S"
#else
#include "strlcat_arm.S"
#endif