summaryrefslogtreecommitdiff
path: root/common/lib/libc/arch/arm/string/strchr.S
blob: 621734eb8e0c82164d5d487db0b500a86a8693a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* $NetBSD: strchr.S,v 1.4 2013/08/20 08:07:30 matt Exp $ */

#include <machine/asm.h>

STRONG_ALIAS(index, strchr)

#if defined(_STANDALONE) || (defined(__thumb__) && !defined(_ARM_ARCH_T2))
#include "strchr_naive.S"
#else
#include "strchr_arm.S"
#endif