Home | History | Annotate | Line # | Download | only in string
strrchr.S revision 1.2.6.2
      1 /* $NetBSD: strrchr.S,v 1.2.6.2 2013/02/25 00:23:59 tls Exp $ */
      2 
      3 #include <machine/asm.h>
      4 
      5 STRONG_ALIAS(rindex, strrchr)
      6 
      7 #if defined(_STANDALONE)
      8 #include "strrchr_naive.S"
      9 #else
     10 #include "strrchr_arm.S"
     11 #endif
     12