Merge pull request #55 from Cuyler36/master

Temporarily disable sqrtf2
This commit is contained in:
Cuyler36
2023-06-15 17:31:02 -04:00
committed by GitHub
+3
View File
@@ -38,6 +38,8 @@ extern inline float sqrtf(float x)
#endif
// hack to get some functions matching where the static const locals are needed
// disabled until static const locals are resolved
/*
extern inline float sqrtf2(float x)
{
static const double _half=.5;
@@ -54,6 +56,7 @@ extern inline float sqrtf2(float x)
}
return x;
}
*/
extern inline double fabs(double x)
{