]> www.ginac.de Git - cln.git/blobdiff - src/real/transcendental/cl_R_cos.cc
bump library version, since CLN doesn't export global object ctors any more.
[cln.git] / src / real / transcendental / cl_R_cos.cc
index 5630d1aff38e227415d31eaf7d4e70c05cb74068..236304f456cf4abbba3633b9e75bf414b7aeb04c 100644 (file)
@@ -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