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

LibM: Implement various functions.

Path from Anonymous.
This commit is contained in:
Andreas Kling 2019-10-17 09:32:24 +02:00
parent e51c1aa3d4
commit c13be2c7ea
3 changed files with 147 additions and 53 deletions

View file

@ -9,6 +9,8 @@ __BEGIN_DECLS
#define M_PI 3.141592653589793
#define M_PI_2 (M_PI / 2)
#define M_TAU (M_PI * 2)
#define M_LN2 0.69314718055995
#define M_LN10 2.30258509299405
double acos(double);
float acosf(float);