Add acosf
This commit is contained in:
parent
0687fd8abb
commit
1f98b52170
1 changed files with 1 additions and 0 deletions
|
|
@ -54,6 +54,7 @@ _MATH_INLINE float cosf(float x) { return (float)cos((double)x); }
|
|||
_MATH_INLINE float atan2f(float y, float x) { return (float)atan2((double)y, (double)x); }
|
||||
_MATH_INLINE float atanf(float x) { return (float)atan((double)x); }
|
||||
_MATH_INLINE float asinf(float x) { return (float)asin((double)x); }
|
||||
_MATH_INLINE float acosf(float x) { return (float)acos((double)x); }
|
||||
|
||||
_MATH_INLINE float fmodf(float x, float m) { return (float)fmod((double)x, (double)m); }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue