Home | History | Annotate | Line # | Download | only in string
strrchr.S revision 1.4.4.2
      1  1.4.4.2  yamt /* $NetBSD: strrchr.S,v 1.4.4.2 2014/05/22 11:26:28 yamt Exp $ */
      2  1.4.4.2  yamt 
      3  1.4.4.2  yamt #include <machine/asm.h>
      4  1.4.4.2  yamt 
      5  1.4.4.2  yamt STRONG_ALIAS(rindex, strrchr)
      6  1.4.4.2  yamt 
      7  1.4.4.2  yamt #if defined(_STANDALONE) || (defined(__thumb__) && !defined(_ARM_ARCH_T2))
      8  1.4.4.2  yamt #include "strrchr_naive.S"
      9  1.4.4.2  yamt #else
     10  1.4.4.2  yamt #include "strrchr_arm.S"
     11  1.4.4.2  yamt #endif
     12