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

LibM: Add nan{f, l}

This commit is contained in:
Mițca Dumitru 2021-03-07 23:53:29 +02:00 committed by Andreas Kling
parent efe4845c56
commit b07310dc8b
2 changed files with 19 additions and 0 deletions

View file

@ -77,6 +77,10 @@ __BEGIN_DECLS
#define DOUBLE_MAX ((double)0b0111111111101111111111111111111111111111111111111111111111111111)
#define DOUBLE_MIN ((double)0b0000000000010000000000000000000000000000000000000000000000000000)
long double nanl(const char*) NOEXCEPT;
double nan(const char*) NOEXCEPT;
float nanf(const char*) NOEXCEPT;
double acos(double) NOEXCEPT;
float acosf(float) NOEXCEPT;
double asin(double) NOEXCEPT;