dev/c/cmake_tutorial/step4/MathFunctions/mysqrt.cxx

8 lines
67 B
C++
Raw Normal View History

2012-05-23 10:42:31 +04:00
#include <math.h>
double
mysqrt (double x)
{
return sqrt (x);
}