match acos, asin, fmod, and math_ppc

This commit is contained in:
CreateSource 2025-01-21 14:46:31 -05:00
parent 627f9e4dd7
commit e4af42aa23
8 changed files with 621 additions and 8 deletions

View file

@ -126,7 +126,7 @@ extern double sqrt __P((double));
extern double ceil __P((double));
extern double fabs __P((double));
// NOTE: I have no idea how they got it to mangle like this
extern double fabs__Fd(double);
static inline double fabs__Fd(double v) { return __fabs(v); }
extern double floor __P((double));
extern double fmod __P((double, double));