1 1.4 matt /* $NetBSD: strrchr.S,v 1.4 2013/08/20 08:07:30 matt Exp $ */ 2 1.2 matt 3 1.2 matt #include <machine/asm.h> 4 1.2 matt 5 1.2 matt STRONG_ALIAS(rindex, strrchr) 6 1.1 matt 7 1.4 matt #if defined(_STANDALONE) || (defined(__thumb__) && !defined(_ARM_ARCH_T2)) 8 1.1 matt #include "strrchr_naive.S" 9 1.1 matt #else 10 1.1 matt #include "strrchr_arm.S" 11 1.1 matt #endif 12