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

LibM: Add trigonometric approximations and misc mathematical functions

This commit is contained in:
faissaloo 2019-06-16 19:58:45 +01:00 committed by Andreas Kling
parent 0db2f3cbe6
commit b7d1eee047
2 changed files with 34 additions and 9 deletions

View file

@ -5,6 +5,9 @@
__BEGIN_DECLS
#define HUGE_VAL 1e10000
#define M_PI 3.141592653589793
#define M_PI_2 (M_PI / 2)
#define M_TAU (M_PI * 2)
double acos(double);
float acosf(float);