Source-Changes-HG archive

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

[src/trunk]: src/lib/libc/arch/i386/gen fix long double infinity.



details:   https://anonhg.NetBSD.org/src/rev/92eee075b046
branches:  trunk
changeset: 763911:92eee075b046
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Apr 06 21:55:36 2011 +0000

description:
fix long double infinity.

diffstat:

 lib/libc/arch/i386/gen/infinityl.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (22 lines):

diff -r 756b6696187b -r 92eee075b046 lib/libc/arch/i386/gen/infinityl.c
--- a/lib/libc/arch/i386/gen/infinityl.c        Wed Apr 06 20:24:16 2011 +0000
+++ b/lib/libc/arch/i386/gen/infinityl.c        Wed Apr 06 21:55:36 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: infinityl.c,v 1.2 2005/06/12 05:21:26 lukem Exp $      */
+/*     $NetBSD: infinityl.c,v 1.3 2011/04/06 21:55:36 christos Exp $   */
 
 /*
  * IEEE-compatible infinityl.c for little-endian 80-bit format -- public domain.
@@ -7,10 +7,10 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: infinityl.c,v 1.2 2005/06/12 05:21:26 lukem Exp $");
+__RCSID("$NetBSD: infinityl.c,v 1.3 2011/04/06 21:55:36 christos Exp $");
 #endif /* LIBC_SCCS and not lint */
 
 #include <math.h>
 
 const union __long_double_u __infinityl =
-       { { 0, 0, 0, 0, 0, 0, 0, 0x80, 0xff, 0x7f, 0, 0 } };
+       { { 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0x7f, 0, 0 } };



Home | Main Index | Thread Index | Old Index