Source-Changes-HG archive

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

[src/trunk]: src/lib/libc/arch/vax/gen Pasto.



details:   https://anonhg.NetBSD.org/src/rev/2116745960b1
branches:  trunk
changeset: 554641:2116745960b1
user:      kleink <kleink%NetBSD.org@localhost>
date:      Thu Oct 30 23:34:16 2003 +0000

description:
Pasto.

diffstat:

 lib/libc/arch/vax/gen/isfinited.c |  14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diffs (35 lines):

diff -r fe96ae90b904 -r 2116745960b1 lib/libc/arch/vax/gen/isfinited.c
--- a/lib/libc/arch/vax/gen/isfinited.c Thu Oct 30 23:31:21 2003 +0000
+++ b/lib/libc/arch/vax/gen/isfinited.c Thu Oct 30 23:34:16 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: isfinited.c,v 1.1 2003/10/29 20:03:51 kleink Exp $     */
+/*     $NetBSD: isfinited.c,v 1.2 2003/10/30 23:34:16 kleink Exp $     */
 
 /*-
  * Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: isfinited.c,v 1.1 2003/10/29 20:03:51 kleink Exp $");
+__RCSID("$NetBSD: isfinited.c,v 1.2 2003/10/30 23:34:16 kleink Exp $");
 #endif
 
 #include <machine/vaxfp.h>
@@ -55,11 +55,11 @@
 
        u.dfltu_d = x;
 
-       if (u.dfltu_dftl.dflt_exp == 0 &&
-           ((u.dfltu_dftl.dflt_frach != 0 ||
-             u.dfltu_dftl.dflt_fracm != 0 ||
-             u.dfltu_dftl.dflt_fracl !0 0) ||
-            (u.dfltu_dftl.dflt_sgn != 0)))
+       if (u.dfltu_dflt.dflt_exp == 0 &&
+           ((u.dfltu_dflt.dflt_frach != 0 ||
+             u.dfltu_dflt.dflt_fracm != 0 ||
+             u.dfltu_dflt.dflt_fracl !0 0) ||
+            (u.dfltu_dflt.dflt_sgn != 0)))
                return 0;
 
        return 1;



Home | Main Index | Thread Index | Old Index