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

Diff for /src/include/math.h between version 1.35 and 1.36

version 1.35, 2016/03/17 20:55:35 version 1.36, 2018/03/10 20:52:58
Line 273 
Line 273 
 double gamma_r(double, int *);  double gamma_r(double, int *);
 double lgamma_r(double, int *);  double lgamma_r(double, int *);
   
   void sincos(double, double *, double *);
   
 /*  /*
  * IEEE Test Vector   * IEEE Test Vector
  */   */
Line 382 
Line 384 
 float gammaf_r(float, int *);  float gammaf_r(float, int *);
 float lgammaf_r(float, int *);  float lgammaf_r(float, int *);
   
   void sincosf(float, float *, float *);
   
 /*  /*
  * Float version of IEEE Test Vector   * Float version of IEEE Test Vector
  */   */
Line 459 
Line 463 
   
 long double fmal(long double, long double, long double);  long double fmal(long double, long double, long double);
 #endif /* __ISO_C_VISIBLE >= 1999 */  #endif /* __ISO_C_VISIBLE >= 1999 */
   
   /*
    * Long double versions of BSD math library entry points
    */
   #if __BSD_VISIBLE
   void sincosl(long double, long double *, long double *);
   #endif
   
 /*  /*
  * Library implementation   * Library implementation

Legend:
Removed from v.1.35  
changed lines
  Added in v.1.36