Module Name:    src
Committed By:   mrg
Date:           Mon Jul  4 11:35:26 UTC 2011

Modified Files:
        src/common/lib/libc/arch/mips/string: ffs.S

Log Message:
add a weak alias from ffs to __ffssi2.  newsmips kernels link now.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/common/lib/libc/arch/mips/string/ffs.S

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/common/lib/libc/arch/mips/string/ffs.S
diff -u src/common/lib/libc/arch/mips/string/ffs.S:1.3 src/common/lib/libc/arch/mips/string/ffs.S:1.4
--- src/common/lib/libc/arch/mips/string/ffs.S:1.3	Sun Jan 23 06:47:14 2011
+++ src/common/lib/libc/arch/mips/string/ffs.S	Mon Jul  4 11:35:26 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: ffs.S,v 1.3 2011/01/23 06:47:14 matt Exp $	*/
+/*	$NetBSD: ffs.S,v 1.4 2011/07/04 11:35:26 mrg Exp $	*/
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -31,13 +31,14 @@
 
 #include <mips/asm.h>
 
-RCSID("$NetBSD: ffs.S,v 1.3 2011/01/23 06:47:14 matt Exp $")
+RCSID("$NetBSD: ffs.S,v 1.4 2011/07/04 11:35:26 mrg Exp $")
 
 /* bit = ffs(value) */
 
 	.text
 	.set	noreorder
 
+WEAK_ALIAS(__ffssi2,ffs)
 #if __mips == 64 || __mips == 32
 LEAF(ffs)
 #ifndef _LP64

Reply via email to