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

LibM: Add M_SQRT2 and M_SQRT1_2

This commit is contained in:
Sergey Bugaev 2020-05-24 21:03:21 +03:00 committed by Andreas Kling
parent 99991761fd
commit a449a0b977

View file

@ -37,6 +37,8 @@ __BEGIN_DECLS
#define M_TAU (M_PI * 2)
#define M_LN2 0.69314718055995
#define M_LN10 2.30258509299405
#define M_SQRT2 1.4142135623730951
#define M_SQRT1_2 0.7071067811865475
double acos(double);
float acosf(float);