diff options
author | Marcus Shawcroft <marcus.shawcroft@arm.com> | 2015-11-09 23:25:36 +0000 |
---|---|---|
committer | Marcus Shawcroft <marcus.shawcroft@arm.com> | 2015-11-13 11:52:01 +0000 |
commit | 2c8e31d6541db57423eceb149417a336ee7f3c79 (patch) | |
tree | 0e516ee29da63960b7ec05b3db7d2caa597d5708 /newlib/libc/machine/arm/strlen.c | |
parent | 52f58640969a522df9c3cbc3ab061f4b95502ecd (diff) | |
download | cygnal-2c8e31d6541db57423eceb149417a336ee7f3c79.tar.gz cygnal-2c8e31d6541db57423eceb149417a336ee7f3c79.tar.bz2 cygnal-2c8e31d6541db57423eceb149417a336ee7f3c79.zip |
[ARM] Reorganize strlen selection.
Remove automake and autoconf selection of strchr implementation in
favour of conditional compilation in strlen.c.
Diffstat (limited to 'newlib/libc/machine/arm/strlen.c')
-rw-r--r-- | newlib/libc/machine/arm/strlen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/machine/arm/strlen.c b/newlib/libc/machine/arm/strlen.c index ac5d47da4..9fb47ba61 100644 --- a/newlib/libc/machine/arm/strlen.c +++ b/newlib/libc/machine/arm/strlen.c @@ -65,7 +65,7 @@ strlen (const char* str) #else /* defined __OPTIMIZE_SIZE__ || defined PREFER_SIZE_OVER_SPEED */ #if defined __thumb__ && ! defined __thumb2__ - /* Implemented in ../../string/strlen.c. */ +#include "../../string/strlen.c" #elif defined _ISA_ARM_7 || defined __ARM_ARCH_6T2__ /* Implemented in strlen-armv7.S. */ |