[BACK]Return to math.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / include

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/include/math.h between version 1.56 and 1.56.2.2

version 1.56, 2011/07/28 22:32:28 version 1.56.2.2, 2012/05/23 10:07:30
Line 88  extern const union __long_double_u __inf
Line 88  extern const union __long_double_u __inf
 #endif  #endif
   
 /* 7.12#4 INFINITY */  /* 7.12#4 INFINITY */
 #if __GNUC_PREREQ__(3, 3)  #if defined(__INFINITY)
 #define INFINITY        __builtin_inff()  
 #elif defined(__INFINITY)  
 #define INFINITY        __INFINITY      /* float constant which overflows */  #define INFINITY        __INFINITY      /* float constant which overflows */
   #elif __GNUC_PREREQ__(3, 3)
   #define INFINITY        __builtin_inff()
 #else  #else
 #define INFINITY        HUGE_VALF       /* positive infinity */  #define INFINITY        HUGE_VALF       /* positive infinity */
 #endif /* __INFINITY */  #endif /* __INFINITY */
Line 321  float sqrtf(float);
Line 321  float sqrtf(float);
 float   erff(float);  float   erff(float);
 float   erfcf(float);  float   erfcf(float);
 float   lgammaf(float);  float   lgammaf(float);
   float   tgammaf(float);
   double  tgamma(double);
   
 /* 7.12.9 nearest integer */  /* 7.12.9 nearest integer */
   

Legend:
Removed from v.1.56  
changed lines
  Added in v.1.56.2.2

CVSweb <webmaster@jp.NetBSD.org>