match acos, asin, fmod, and math_ppc (#545)

This commit is contained in:
CreateSource 2025-01-21 14:50:16 -05:00 committed by GitHub
parent 8d1da93f84
commit d72f538b87
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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));