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 an obvious botch which made eg conjl(3) a n...



details:   https://anonhg.NetBSD.org/src/rev/5acf2231bb51
branches:  trunk
changeset: 757713:5acf2231bb51
user:      drochner <drochner%NetBSD.org@localhost>
date:      Thu Sep 16 20:39:50 2010 +0000

description:
fix an obvious botch which made eg conjl(3) a no-op

diffstat:

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

diffs (21 lines):

diff -r ec2f196179d2 -r 5acf2231bb51 lib/libm/src/math_private.h
--- a/lib/libm/src/math_private.h       Thu Sep 16 20:08:51 2010 +0000
+++ b/lib/libm/src/math_private.h       Thu Sep 16 20:39:50 2010 +0000
@@ -11,7 +11,7 @@
 
 /*
  * from: @(#)fdlibm.h 5.1 93/09/24
- * $NetBSD: math_private.h,v 1.15 2010/09/15 16:11:30 christos Exp $
+ * $NetBSD: math_private.h,v 1.16 2010/09/16 20:39:50 drochner Exp $
  */
 
 #ifndef _MATH_PRIVATE_H_
@@ -193,7 +193,7 @@
 
 typedef union {
        long double complex z;
-       long double complex parts[2];
+       long double parts[2];
 } long_double_complex;
 
 #define        REAL_PART(z)    ((z).parts[0])



Home | Main Index | Thread Index | Old Index