Home | History | Annotate | Line # | Download | only in string
strchr.S revision 1.4.28.2
      1  1.4.28.1  martin /* $NetBSD: strchr.S,v 1.4.28.2 2020/04/21 19:37:42 martin Exp $ */
      2       1.2    matt 
      3       1.2    matt #include <machine/asm.h>
      4       1.2    matt 
      5       1.2    matt STRONG_ALIAS(index, strchr)
      6       1.1    matt 
      7       1.4    matt #if defined(_STANDALONE) || (defined(__thumb__) && !defined(_ARM_ARCH_T2))
      8       1.1    matt #include "strchr_naive.S"
      9       1.1    matt #else
     10       1.1    matt #include "strchr_arm.S"
     11       1.1    matt #endif
     12