Home | History | Annotate | Line # | Download | only in string
strchr.S revision 1.2
      1  1.2  matt /* $NetBSD: strchr.S,v 1.2 2013/01/23 07:45:46 matt 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.1  matt #if defined(_STANDALONE)
      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