Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/common/lib/libc/arch/arm/string Use the naive version of str...



details:   https://anonhg.NetBSD.org/src/rev/d237424e5f90
branches:  trunk
changeset: 783831:d237424e5f90
user:      matt <matt%NetBSD.org@localhost>
date:      Thu Jan 10 02:14:42 2013 +0000

description:
Use the naive version of strlcpy until the longer one is fixed (it's still
faster than the C version).

diffstat:

 common/lib/libc/arch/arm/string/strlcpy.S |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (14 lines):

diff -r bd7b9442958e -r d237424e5f90 common/lib/libc/arch/arm/string/strlcpy.S
--- a/common/lib/libc/arch/arm/string/strlcpy.S Thu Jan 10 02:13:49 2013 +0000
+++ b/common/lib/libc/arch/arm/string/strlcpy.S Thu Jan 10 02:14:42 2013 +0000
@@ -1,8 +1,8 @@
-/* $NetBSD: strlcpy.S,v 1.2 2013/01/10 02:13:49 matt Exp $ */
+/* $NetBSD: strlcpy.S,v 1.3 2013/01/10 02:14:42 matt Exp $ */
 
 #define STRLCPY
 
-#if defined(_STANDALONE)
+#if defined(_STANDALONE) || 1
 #include "strcpy_naive.S"
 #else
 #include "strcpy_arm.S"



Home | Main Index | Thread Index | Old Index