match acos, asin, fmod, and math_ppc (#545)
This commit is contained in:
parent
8d1da93f84
commit
d72f538b87
8 changed files with 621 additions and 8 deletions
25
src/MSL_C.PPCEABI.bare.H/math_ppc.c
Normal file
25
src/MSL_C.PPCEABI.bare.H/math_ppc.c
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
extern double tan(double);
|
||||
extern double sin(double);
|
||||
extern double cos(double);
|
||||
extern double atan2(double);
|
||||
extern double acos(double);
|
||||
|
||||
float acosf(float arg0) {
|
||||
return (float) acos(arg0);
|
||||
}
|
||||
|
||||
float atan2f(float arg0) {
|
||||
return (float) atan2(arg0);
|
||||
}
|
||||
|
||||
float cosf(float arg0) {
|
||||
return (float) cos(arg0);
|
||||
}
|
||||
|
||||
float sinf(float arg0) {
|
||||
return (float) sin(arg0);
|
||||
}
|
||||
|
||||
float tanf(float arg0) {
|
||||
return (float) tan(arg0);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue