mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 03:54:58 +00:00
Fix a bunch of compiler warnings. Not all, but a lot.
This commit is contained in:
parent
15fb917f28
commit
901b7d5d91
10 changed files with 29 additions and 191 deletions
|
@ -34,8 +34,8 @@ double round(double);
|
|||
float roundf(float);
|
||||
double fabs(double);
|
||||
float fabsf(float);
|
||||
double fmod(double);
|
||||
float fmodf(float);
|
||||
double fmod(double, double);
|
||||
float fmodf(float, float);
|
||||
double exp(double);
|
||||
float expf(float);
|
||||
double frexp(double, int* exp);
|
||||
|
@ -49,7 +49,7 @@ float sqrtf(float);
|
|||
double modf(double, double*);
|
||||
float modff(float, float*);
|
||||
double ldexp(double, int exp);
|
||||
double ldexpf(float, int exp);
|
||||
float ldexpf(float, int exp);
|
||||
|
||||
double pow(double x, double y);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue