Big MSL_C update (#546)

* match acos, asin, fmod, and math_ppc

* match many files in MSL_C
math_ppc, s_copysign, s_cos, s_modf, s_sin, s_tan, w_acos, w_asin, w_fmod, w_pow
This commit is contained in:
CreateSource 2025-01-24 10:48:59 -05:00 committed by GitHub
parent d72f538b87
commit d6da17b604
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 556 additions and 16 deletions

View file

@ -1,9 +1,4 @@
extern double tan(double);
extern double sin(double);
extern double cos(double);
extern double atan2(double);
extern double acos(double);
#include "PowerPC_EABI_Support/Msl/MSL_C/MSL_Common/math_ppc.h"
float acosf(float arg0) {
return (float) acos(arg0);
}