Source-Changes-HG archive

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

[src/trunk]: src/include fix inverted condition...



details:   https://anonhg.NetBSD.org/src/rev/45085fe6a3e0
branches:  trunk
changeset: 812711:45085fe6a3e0
user:      christos <christos%NetBSD.org@localhost>
date:      Tue Dec 29 01:58:26 2015 +0000

description:
fix inverted condition...

diffstat:

 include/fenv.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 3858a7c70446 -r 45085fe6a3e0 include/fenv.h
--- a/include/fenv.h    Mon Dec 28 19:32:22 2015 +0000
+++ b/include/fenv.h    Tue Dec 29 01:58:26 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: fenv.h,v 1.20 2015/12/28 11:03:36 martin Exp $ */
+/*     $NetBSD: fenv.h,v 1.21 2015/12/29 01:58:26 christos Exp $       */
 /*
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -33,7 +33,7 @@
     && !defined(__hppa__) && !defined(__powerpc__) && !defined(__mips__) \
     && !defined(__or1k__) && !defined(__riscv__) && !defined(__sparc__) \
     && !defined(__x86_64__) \
-    && !(defined(__m68k__) && (defined(__mc68010__) || defined(__mcoldfire__)))
+    && !(defined(__m68k__) && !(defined(__mc68010__) || defined(__mcoldfire__)))
 # ifndef __TEST_FENV
 #  error       "fenv.h is currently not supported for this architecture"
 # endif



Home | Main Index | Thread Index | Old Index