1
0
cmaketutorial/Step7/MathFunctions/mysqrt.h
2023-10-29 11:50:48 +01:00

8 lines
88 B
C++

#pragma once
namespace mathfunctions {
namespace detail {
double mysqrt(double x);
}
}