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

8 lines
67 B
C++

#include <math.h>
double
mysqrt (double x)
{
return sqrt (x);
}