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

8 lines
67 B
C++
Raw Permalink Normal View History

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