Add missing prototypes for fma() and fmaf(), and remove an inaccurate
comment.
This commit is contained in:
parent
c4c44d2935
commit
21122bea01
@ -225,8 +225,8 @@ double cbrt(double);
|
||||
double erf(double);
|
||||
double erfc(double);
|
||||
double expm1(double);
|
||||
double fma(double, double, double);
|
||||
double hypot(double, double);
|
||||
/* Our ilogb raises no exceptions; we side with IEEE-754R and C99, not POSIX */
|
||||
int ilogb(double) __pure2;
|
||||
int (isinf)(double) __pure2;
|
||||
int (isnan)(double) __pure2;
|
||||
@ -347,6 +347,7 @@ float scalbnf(float, int);
|
||||
float truncf(float);
|
||||
|
||||
float fdimf(float, float);
|
||||
float fmaf(float, float, float);
|
||||
float fmaxf(float, float) __pure2;
|
||||
float fminf(float, float) __pure2;
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user