xref: /minix3/common/lib/libc/arch/arm/string/strchr.S (revision 84d9c625bfea59e274550651111ae9edfdc40fbd)
1*84d9c625SLionel Sambuc/* $NetBSD: strchr.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(index, strchr)
6*84d9c625SLionel Sambuc
7*84d9c625SLionel Sambuc#if defined(_STANDALONE) || (defined(__thumb__) && !defined(_ARM_ARCH_T2))
8*84d9c625SLionel Sambuc#include "strchr_naive.S"
9*84d9c625SLionel Sambuc#else
10*84d9c625SLionel Sambuc#include "strchr_arm.S"
11*84d9c625SLionel Sambuc#endif
12