| 10 | #include <math.h> |
| 11 | |
| 12 | inline float dtMathFabsf(float x) { return fabsf(x); } |
| 13 | inline float dtMathSqrtf(float x) { return sqrtf(x); } |
| 14 | inline float dtMathFloorf(float x) { return floorf(x); } |
| 15 | inline float dtMathCeilf(float x) { return ceilf(x); } |
no outgoing calls
no test coverage detected