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