X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Freal%2Ftranscendental%2Fcl_R_cos.cc;h=236304f456cf4abbba3633b9e75bf414b7aeb04c;hb=c486b78a1a0613f07a10816d6f6ca9e485bc8290;hp=5630d1aff38e227415d31eaf7d4e70c05cb74068;hpb=dd9e0f894eec7e2a8cf85078330ddc0a6639090b;p=cln.git diff --git a/src/real/transcendental/cl_R_cos.cc b/src/real/transcendental/cl_R_cos.cc index 5630d1a..236304f 100644 --- a/src/real/transcendental/cl_R_cos.cc +++ b/src/real/transcendental/cl_R_cos.cc @@ -4,14 +4,16 @@ #include "cl_sysdep.h" // Specification. -#include "cl_real.h" +#include "cln/real.h" // Implementation. -#include "cl_float.h" +#include "cln/float.h" #include "cl_R.h" +namespace cln { + const cl_R cos (const cl_R& x) { // Methode: @@ -28,3 +30,5 @@ const cl_R cos (const cl_R& x) return cos(x); } } + +} // namespace cln