comparison liboctave/lo-ieee.cc @ 4102:cbac6756967e

[project @ 2002-10-14 20:16:44 by jwe]
author jwe
date Mon, 14 Oct 2002 20:16:45 +0000
parents 9a2102864eb0
children 67ef87a80c49
comparison
equal deleted inserted replaced
4101:ea537559ab07 4102:cbac6756967e
45 #endif 45 #endif
46 #endif 46 #endif
47 47
48 #include "lo-ieee.h" 48 #include "lo-ieee.h"
49 #include "mach-info.h" 49 #include "mach-info.h"
50
51 // Octave's idea of infinity.
52 double octave_Inf;
53
54 // Octave's idea of not a number.
55 double octave_NaN;
56
57 // Octave's idea of a missing value.
58 double octave_NA;
59
60 int lo_ieee_hw;
61 int lo_ieee_lw;
62 50
63 void 51 void
64 octave_ieee_init (void) 52 octave_ieee_init (void)
65 { 53 {
66 #if defined (HAVE_ISINF) || defined (HAVE_FINITE) 54 #if defined (HAVE_ISINF) || defined (HAVE_FINITE)