Module Name: src
Committed By: joerg
Date: Wed Nov 20 12:29:13 UTC 2013
Modified Files:
src/lib/libm/src: s_cbrt.c
Log Message:
Fix operand order.
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/lib/libm/src/s_cbrt.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libm/src/s_cbrt.c
diff -u src/lib/libm/src/s_cbrt.c:1.12 src/lib/libm/src/s_cbrt.c:1.13
--- src/lib/libm/src/s_cbrt.c:1.12 Tue Nov 19 19:24:34 2013
+++ src/lib/libm/src/s_cbrt.c Wed Nov 20 12:29:13 2013
@@ -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 @@ __RCSID("$NetBSD: s_cbrt.c,v 1.12 2013/1
#include "math_private.h"
#ifndef __HAVE_LONG_DOUBLE
-__strong_alias(cbrt, _cbrtl)
+__strong_alias(_cbrtl, cbrt)
__weak_alias(cbrtl, _cbrtl)
#endif