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
Notes: sideshowbarker 2024-07-19 06:10:57 +09:00

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);