Switch to using ARM assembly versions of strcat, strchr, strrchr.
This commit is contained in:
parent
2b36c3f081
commit
24a929b8a1
7
common/lib/libc/arch/arm/string/strcat.S
Normal file
7
common/lib/libc/arch/arm/string/strcat.S
Normal file
@ -0,0 +1,7 @@
|
||||
/* $NetBSD: strcat.S,v 1.1 2013/01/23 05:46:17 matt Exp $ */
|
||||
|
||||
#if defined(_STANDALONE)
|
||||
#include "strcat_naive.S"
|
||||
#else
|
||||
#include "strcat_arm.S"
|
||||
#endif
|
7
common/lib/libc/arch/arm/string/strchr.S
Normal file
7
common/lib/libc/arch/arm/string/strchr.S
Normal file
@ -0,0 +1,7 @@
|
||||
/* $NetBSD: strchr.S,v 1.1 2013/01/23 05:46:17 matt Exp $ */
|
||||
|
||||
#if defined(_STANDALONE)
|
||||
#include "strchr_naive.S"
|
||||
#else
|
||||
#include "strchr_arm.S"
|
||||
#endif
|
7
common/lib/libc/arch/arm/string/strrchr.S
Normal file
7
common/lib/libc/arch/arm/string/strrchr.S
Normal file
@ -0,0 +1,7 @@
|
||||
/* $NetBSD: strrchr.S,v 1.1 2013/01/23 05:46:17 matt Exp $ */
|
||||
|
||||
#if defined(_STANDALONE)
|
||||
#include "strrchr_naive.S"
|
||||
#else
|
||||
#include "strrchr_arm.S"
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user