This commit is contained in:
Cuyler36
2023-04-16 13:43:32 -04:00
parent 1b5e0f88a6
commit 7336d51f44
29 changed files with 3170 additions and 124 deletions
+9
View File
@@ -19,6 +19,15 @@ inline float sqrtf(float x)
return x;
}
extern inline double fabs(double x)
{
return __fabs(x) ;
}
inline float fabsf(float x) {
return (float)fabs((double)x);
}
f64 atan2(f64, f64);
f64 acos(f32);