Module Name:    src
Committed By:   matt
Date:           Thu Jan 10 02:14:42 UTC 2013

Modified Files:
        src/common/lib/libc/arch/arm/string: strlcpy.S

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


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/common/lib/libc/arch/arm/string/strlcpy.S

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/common/lib/libc/arch/arm/string/strlcpy.S
diff -u src/common/lib/libc/arch/arm/string/strlcpy.S:1.2 src/common/lib/libc/arch/arm/string/strlcpy.S:1.3
--- src/common/lib/libc/arch/arm/string/strlcpy.S:1.2	Thu Jan 10 02:13:49 2013
+++ src/common/lib/libc/arch/arm/string/strlcpy.S	Thu Jan 10 02:14:42 2013
@@ -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"

Reply via email to