Module Name: src
Committed By: drochner
Date: Thu Sep 16 20:39:51 UTC 2010
Modified Files:
src/lib/libm/src: math_private.h
Log Message:
fix an obvious botch which made eg conjl(3) a no-op
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/lib/libm/src/math_private.h
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/math_private.h
diff -u src/lib/libm/src/math_private.h:1.15 src/lib/libm/src/math_private.h:1.16
--- src/lib/libm/src/math_private.h:1.15 Wed Sep 15 16:11:30 2010
+++ src/lib/libm/src/math_private.h Thu Sep 16 20:39:50 2010
@@ -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])