8 lines
67 B
C++
8 lines
67 B
C++
|
#include <math.h>
|
||
|
|
||
|
double
|
||
|
mysqrt (double x)
|
||
|
{
|
||
|
return sqrt (x);
|
||
|
}
|