xref: /minix3/common/lib/libc/arch/arm/string/strrchr.S (revision 84d9c625bfea59e274550651111ae9edfdc40fbd)
1*84d9c625SLionel Sambuc/* $NetBSD: strrchr.S,v 1.4 2013/08/20 08:07:30 matt Exp $ */
2*84d9c625SLionel Sambuc
3*84d9c625SLionel Sambuc#include <machine/asm.h>
4*84d9c625SLionel Sambuc
5*84d9c625SLionel SambucSTRONG_ALIAS(rindex, strrchr)
6*84d9c625SLionel Sambuc
7*84d9c625SLionel Sambuc#if defined(_STANDALONE) || (defined(__thumb__) && !defined(_ARM_ARCH_T2))
8*84d9c625SLionel Sambuc#include "strrchr_naive.S"
9*84d9c625SLionel Sambuc#else
10*84d9c625SLionel Sambuc#include "strrchr_arm.S"
11*84d9c625SLionel Sambuc#endif
12