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