1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* $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