]> www.ginac.de Git - cln.git/blobdiff - src/complex/misc/cl_C_conjugate.cc
* tests/Makefile.in: MinGW support for make check
[cln.git] / src / complex / misc / cl_C_conjugate.cc
index 1a6e8e17363c56477ab211f734c796c0441eaadd..4c33e0498999f90d1e1bee837f35b1ae0962af64 100644 (file)
@@ -4,13 +4,15 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_complex.h"
+#include "cln/complex.h"
 
 
 // Implementation.
 
 #include "cl_C.h"
-#include "cl_real.h"
+#include "cln/real.h"
+
+namespace cln {
 
 const cl_N conjugate (const cl_N& x)
 {
@@ -24,3 +26,5 @@ const cl_N conjugate (const cl_N& x)
                return complex_C(a,-b);
        }
 }
+
+}  // namespace cln