Source-Changes-HG archive

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

[src/trunk]: src/lib/libm/src Fix operand order.



details:   https://anonhg.NetBSD.org/src/rev/3aa9d31d1f4f
branches:  trunk
changeset: 791478:3aa9d31d1f4f
user:      joerg <joerg%NetBSD.org@localhost>
date:      Wed Nov 20 12:29:13 2013 +0000

description:
Fix operand order.

diffstat:

 lib/libm/src/s_cbrt.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r ae91aec2e07a -r 3aa9d31d1f4f lib/libm/src/s_cbrt.c
--- a/lib/libm/src/s_cbrt.c     Wed Nov 20 12:16:47 2013 +0000
+++ b/lib/libm/src/s_cbrt.c     Wed Nov 20 12:29:13 2013 +0000
@@ -12,7 +12,7 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBM_SCCS) && !defined(lint)
-__RCSID("$NetBSD: s_cbrt.c,v 1.12 2013/11/19 19:24:34 joerg Exp $");
+__RCSID("$NetBSD: s_cbrt.c,v 1.13 2013/11/20 12:29:13 joerg Exp $");
 #endif
 
 #include "namespace.h"
@@ -20,7 +20,7 @@
 #include "math_private.h"
 
 #ifndef __HAVE_LONG_DOUBLE
-__strong_alias(cbrt, _cbrtl)
+__strong_alias(_cbrtl, cbrt)
 __weak_alias(cbrtl, _cbrtl)
 #endif
 



Home | Main Index | Thread Index | Old Index