]> www.ginac.de Git - cln.git/blobdiff - src/rational/elem/cl_RA_div.cc
Replace CL_REQUIRE/CL_PROVIDE(cl_C_ring) with portable code.
[cln.git] / src / rational / elem / cl_RA_div.cc
index 00ed7b1de7930e15ed353026c291b5d734630adb..fe0d5e73da98d99b2fd1bb3e8c8fdfbbaf775467 100644 (file)
@@ -4,13 +4,15 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_rational.h"
+#include "cln/rational.h"
 
 
 // Implementation.
 
 #include "cl_RA.h"
-#include "cl_integer.h"
+#include "cln/integer.h"
+
+namespace cln {
 
 const cl_RA operator/ (const cl_RA& r, const cl_RA& s)
 {
@@ -24,3 +26,5 @@ const cl_RA operator/ (const cl_RA& r, const cl_RA& s)
        }
        return r * recip(s);
 }
+
+}  // namespace cln