Use STRONG_ALIAS instead of ALTENTRY.
authorkettenis <kettenis@openbsd.org>
Thu, 14 May 2015 21:40:37 +0000 (21:40 +0000)
committerkettenis <kettenis@openbsd.org>
Thu, 14 May 2015 21:40:37 +0000 (21:40 +0000)
ok millert@

lib/libc/arch/i386/string/strchr.S
lib/libc/arch/i386/string/strrchr.S

index 453cdd6..6d36a58 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: strchr.S,v 1.4 2014/11/30 19:43:56 deraadt Exp $ */
+/*     $OpenBSD: strchr.S,v 1.5 2015/05/14 21:40:37 kettenis Exp $ */
 /*
  * Written by J.T. Conklin <jtc@netbsd.org>.
  * Public domain.
@@ -6,7 +6,8 @@
 
 #include <machine/asm.h>
 
-ALTENTRY(index)
+STRONG_ALIAS(index, strchr)
+
 ENTRY(strchr)
        movl    4(%esp),%eax
        movb    8(%esp),%cl
index ac6808f..8507e6c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: strrchr.S,v 1.4 2014/11/30 19:43:56 deraadt Exp $ */
+/*     $OpenBSD: strrchr.S,v 1.5 2015/05/14 21:40:37 kettenis Exp $ */
 /*
  * Written by J.T. Conklin <jtc@netbsd.org>.
  * Public domain.
@@ -6,7 +6,8 @@
 
 #include <machine/asm.h>
 
-ALTENTRY(rindex)
+STRONG_ALIAS(rindex, strrchr)
+
 ENTRY(strrchr)
        pushl   %ebx
        movl    8(%esp),%edx