6.85 __sqrt, __sqrtf Intrinsic Function

Computes the square root of the operand x .

Note: Include math.h.

Suggested Replacement

sqrt

sqrtf

Caveats

None.

Examples

Consider migrating IAR code such as:
double __sqrt(double x); float __sqrtf(float x);
to MPLAB XC codes similar to:
sqrt(2); 

Further Information

None.