]> www.ginac.de Git - cln.git/blobdiff - src/real/transcendental/cl_R_sin.cc
Cater to the fact that g++ 4.3 will use a different naming for
[cln.git] / src / real / transcendental / cl_R_sin.cc
index 045ea250717f2f6e38df3db64a6a6f8e59b6087f..35c09471c32e9f9490b0557f169041ae077f5272 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 sin (const cl_R& x)
 {
 // Methode:
@@ -28,3 +30,5 @@ const cl_R sin (const cl_R& x)
                return sin(x);
        }
 }
+
+}  // namespace cln