1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:17:44 +00:00

LibM: Run clang-format on everything.

This commit is contained in:
Andreas Kling 2019-06-07 11:49:47 +02:00
parent b07bbf383d
commit 3ca332af42
2 changed files with 17 additions and 15 deletions

View file

@ -55,10 +55,9 @@ double pow(double x, double y);
double log2(double);
float log2f(float);
long double log2l(long double);
double frexp(double, int *);
float frexpf(float, int *);
long double frexpl(long double, int *);
long double log2l(long double);
double frexp(double, int*);
float frexpf(float, int*);
long double frexpl(long double, int*);
__END_DECLS