1 1.3 matt /* $NetBSD: strnlen.S,v 1.3 2013/08/20 08:08:59 matt Exp $ */ 2 1.3 matt 3 1.3 matt #include <arm/cdefs.h> /* for _ARM_ARCH_T2 */ 4 1.1 matt 5 1.1 matt #define STRNLEN 6 1.1 matt 7 1.3 matt #if defined(_STANDALONE) || (defined(__thumb__) && !defined(_ARM_ARCH_T2)) 8 1.1 matt #include "strlen_naive.S" 9 1.1 matt #else 10 1.1 matt #include "strlen_arm.S" 11 1.1 matt #endif 12