| 68 | |
| 69 | extern inline float atan2f(float y, float x) { return ::atan2(y, x); } |
| 70 | extern inline float cosf(float x) { return ::cos(x); } |
| 71 | extern inline float sinf(float x) { return ::sin(x); } |
| 72 | extern inline float tanf(float x) { return ::tan(x); } |
| 73 | extern inline float tan(float x) { return tanf(x); } |
no test coverage detected