1/* $NetBSD: strchr.S,v 1.2 2013/01/23 07:45:46 matt Exp $ */ 2 3#include <machine/asm.h> 4 5STRONG_ALIAS(index, strchr) 6 7#if defined(_STANDALONE) 8#include "strchr_naive.S" 9#else 10#include "strchr_arm.S" 11#endif 12