Changeset 214
- Timestamp:
- 06/14/06 20:48:14 (2 years ago)
- Files:
-
- trunk/tango/stdc/math.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/stdc/math.d
r211 r214 102 102 version( DigitalMarsWin32 ) 103 103 { 104 //105 // This is the DigitalMars inline version of these functions106 //107 104 enum 108 105 { … … 174 171 else version( Posix ) 175 172 { 173 enum 174 { 175 FP_NAN, 176 FP_INFINITE, 177 FP_ZERO, 178 FP_SUBNORMAL, 179 FP_NORMAL, 180 } 181 182 enum 183 { 184 FP_FAST_FMA = 0, 185 FP_FAST_FMAF = 0, 186 FP_FAST_FMAL = 0, 187 } 188 176 189 int __fpclassifyf(float x); 177 190 int __fpclassifyd(double x);












