Add index/rindex strong aiases.

This commit is contained in:
matt 2013-01-23 07:45:46 +00:00
parent bb2928cbda
commit e3cc29a381
2 changed files with 10 additions and 2 deletions

View File

@ -1,4 +1,8 @@
/* $NetBSD: strchr.S,v 1.1 2013/01/23 05:46:17 matt Exp $ */
/* $NetBSD: strchr.S,v 1.2 2013/01/23 07:45:46 matt Exp $ */
#include <machine/asm.h>
STRONG_ALIAS(index, strchr)
#if defined(_STANDALONE)
#include "strchr_naive.S"

View File

@ -1,4 +1,8 @@
/* $NetBSD: strrchr.S,v 1.1 2013/01/23 05:46:17 matt Exp $ */
/* $NetBSD: strrchr.S,v 1.2 2013/01/23 07:45:46 matt Exp $ */
#include <machine/asm.h>
STRONG_ALIAS(rindex, strrchr)
#if defined(_STANDALONE)
#include "strrchr_naive.S"