C++Builder doesn't define a non-standard "sqrtf" function but rather an overload of "sqrt" for float arguments.
| 8 | // C++Builder doesn't define a non-standard "sqrtf" function but rather an overload of "sqrt" |
| 9 | // for float arguments. |
| 10 | inline float sqrtf (float x) { return sqrt (x); } |
| 11 | #endif |
| 12 | |
| 13 | BEGIN_AS_NAMESPACE |