Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 214

Show
Ignore:
Timestamp:
06/14/06 20:48:14 (2 years ago)
Author:
sean
Message:

Yet more changes that should make the new C99 classification macros work on Posix.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/stdc/math.d

    r211 r214  
    102102version( DigitalMarsWin32 ) 
    103103{ 
    104     // 
    105     // This is the DigitalMars inline version of these functions 
    106     // 
    107104    enum 
    108105    { 
     
    174171else version( Posix ) 
    175172{ 
     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 
    176189    int __fpclassifyf(float x); 
    177190    int __fpclassifyd(double x);