| 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); } |
| 74 | #endif |
| 75 | #ifdef __cplusplus |