[liba] Add hypot in math.h header

This commit is contained in:
Émilie Feral
2018-04-13 18:03:00 +02:00
parent b0d94f6ead
commit 2a05247629
5 changed files with 209 additions and 2 deletions

View File

@@ -60,6 +60,7 @@ float fabsf(float x);
float floorf(float x);
float fmodf(float x, float y);
float frexpf(float x, int *eptr);
float hypotf(float x, float y);
float ldexpf(float x, int n);
float lgammaf(float x);
float lgammaf_r(float x, int *signgamp);
@@ -97,6 +98,7 @@ double fabs(double x);
double floor(double x);
double fmod(double x, double y);
double frexp(double x, int *eptr);
double hypot(double x, double y);
double lgamma(double x);
double lgamma_r(double x, int *signgamp);
double log(double x);