comparison src/floatfns.c @ 7361:cbfcfccd5eae

Don't guard DOMAIN && SING && OVERFLOW check by an #ifndef MSDOS.
author Richard M. Stallman <rms@gnu.org>
date Fri, 06 May 1994 18:14:02 +0000
parents cd81dba38a49
children bf93ac2d8409
comparison
equal deleted inserted replaced
7360:cfb65c58eb9a 7361:cbfcfccd5eae
75 /* This declaration is omitted on some systems, like Ultrix. */ 75 /* This declaration is omitted on some systems, like Ultrix. */
76 #if !defined (HPUX) && defined (HAVE_LOGB) 76 #if !defined (HPUX) && defined (HAVE_LOGB)
77 extern double logb (); 77 extern double logb ();
78 #endif /* not HPUX and HAVE_LOGB */ 78 #endif /* not HPUX and HAVE_LOGB */
79 79
80 #ifndef MSDOS
81 #if defined(DOMAIN) && defined(SING) && defined(OVERFLOW) 80 #if defined(DOMAIN) && defined(SING) && defined(OVERFLOW)
82 /* If those are defined, then this is probably a `matherr' machine. */ 81 /* If those are defined, then this is probably a `matherr' machine. */
83 # ifndef HAVE_MATHERR 82 # ifndef HAVE_MATHERR
84 # define HAVE_MATHERR 83 # define HAVE_MATHERR
85 # endif 84 # endif
86 #endif
87 #endif 85 #endif
88 86
89 #ifdef NO_MATHERR 87 #ifdef NO_MATHERR
90 #undef HAVE_MATHERR 88 #undef HAVE_MATHERR
91 #endif 89 #endif