Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libm/src Use __weak_alias instead of __weak_reference (o...



details:   https://anonhg.NetBSD.org/src/rev/d7e088f21d83
branches:  trunk
changeset: 784864:d7e088f21d83
user:      martin <martin%NetBSD.org@localhost>
date:      Tue Feb 12 08:21:48 2013 +0000

description:
Use __weak_alias instead of __weak_reference (obvious pasto)

diffstat:

 lib/libm/src/s_fma.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (25 lines):

diff -r 5029fbe93736 -r d7e088f21d83 lib/libm/src/s_fma.c
--- a/lib/libm/src/s_fma.c      Tue Feb 12 03:11:43 2013 +0000
+++ b/lib/libm/src/s_fma.c      Tue Feb 12 08:21:48 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: s_fma.c,v 1.3 2013/02/11 02:45:27 christos Exp $       */
+/*     $NetBSD: s_fma.c,v 1.4 2013/02/12 08:21:48 martin Exp $ */
 
 /*-
  * Copyright (c) 2005-2011 David Schultz <das%FreeBSD.ORG@localhost>
@@ -30,7 +30,7 @@
 #if 0
 __FBSDID("$FreeBSD: src/lib/msun/src/s_fma.c,v 1.8 2011/10/21 06:30:43 das Exp $");
 #else
-__RCSID("$NetBSD: s_fma.c,v 1.3 2013/02/11 02:45:27 christos Exp $");
+__RCSID("$NetBSD: s_fma.c,v 1.4 2013/02/12 08:21:48 martin Exp $");
 #endif
 
 #include <machine/ieee.h>
@@ -289,5 +289,5 @@
 }
 
 #ifndef __HAVE_LONG_DOUBLE
-__weak_reference(fma, fmal);
+__weak_alias(fma, fmal)
 #endif



Home | Main Index | Thread Index | Old Index