Remove building with NOCRYPTO option
[minix.git] / common / lib / libc / arch / arm / string / strnlen.S
blob21fbf2737583fd4207425833c33144a513a30b43
1 /* $NetBSD: strnlen.S,v 1.3 2013/08/20 08:08:59 matt Exp $ */
3 #include <arm/cdefs.h>          /* for _ARM_ARCH_T2 */
5 #define STRNLEN
7 #if defined(_STANDALONE) || (defined(__thumb__) && !defined(_ARM_ARCH_T2))
8 #include "strlen_naive.S"
9 #else
10 #include "strlen_arm.S"
11 #endif