From e61510c2254dafabacd532580f2d351b707cb597 Mon Sep 17 00:00:00 2001 From: matt Date: Tue, 20 Aug 2013 21:08:54 +0000 Subject: [PATCH] strlcat_arm.S is smaller than strlcat_naive.S so always use it. --- common/lib/libc/arch/arm/string/strlcat.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/lib/libc/arch/arm/string/strlcat.S b/common/lib/libc/arch/arm/string/strlcat.S index fef02ce0b7e5..2828e4181be8 100644 --- a/common/lib/libc/arch/arm/string/strlcat.S +++ b/common/lib/libc/arch/arm/string/strlcat.S @@ -1,4 +1,4 @@ -/* $NetBSD: strlcat.S,v 1.1 2013/01/23 07:56:09 matt Exp $ */ +/* $NetBSD: strlcat.S,v 1.2 2013/08/20 21:08:54 matt Exp $ */ #include @@ -7,7 +7,7 @@ WEAK_ALIAS(strlcat, _strlcat) #include "namespace.h" #endif -#ifdef _STANDALONE +#if defined(_STANDALONE) && 0 /* arm version is always smaller */ #include "strlcat_naive.S" #else #include "strlcat_arm.S"