]> www.ginac.de Git - cln.git/blobdiff - src/complex/transcendental/cl_C_expt_C.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / complex / transcendental / cl_C_expt_C.cc
index 7709e88278344829655e104681c6a1d2be49368a..b1bf2ea4a8df126912ae6d0773926927c8f009ca 100644 (file)
@@ -4,19 +4,21 @@
 #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"
 #include "cl_R.h"
-#include "cl_rational.h"
+#include "cln/rational.h"
 #include "cl_RA.h"
 #include "cl_I.h"
 #include "cl_N.h"
 
+namespace cln {
+
 // Methode:
 // Falls y rational:
 //   Falls y Integer:
@@ -216,3 +218,5 @@ const cl_N expt (const cl_N& x, const cl_N& y)
        }
        return exp(log(x)*y);
 }
+
+}  // namespace cln