Remove building with NOCRYPTO option
[minix.git] / common / lib / libc / arch / arm / string / strrchr.S
blobcbbe9de48b596611919ddf473440b22d06638610
1 /* $NetBSD: strrchr.S,v 1.4 2013/08/20 08:07:30 matt Exp $ */
3 #include <machine/asm.h>
5 STRONG_ALIAS(rindex, strrchr)  
7 #if defined(_STANDALONE) || (defined(__thumb__) && !defined(_ARM_ARCH_T2))
8 #include "strrchr_naive.S"
9 #else
10 #include "strrchr_arm.S"
11 #endif