]> www.ginac.de Git - cln.git/blobdiff - src/integer/division/cl_I_exquo.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / integer / division / cl_I_exquo.cc
index 37d7189bc032a188279abc12e9eb45ae795c86ec..771eef8b07b5a48d4aacfd90bef6b11d7c48b299 100644 (file)
@@ -4,13 +4,15 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_integer.h"
+#include "cln/integer.h"
 
 
 // Implementation.
 
 #include "cl_I.h"
 
+namespace cln {
+
 const cl_I exquo (const cl_I& x, const cl_I& y)
 {
 // Methode:
@@ -25,3 +27,5 @@ const cl_I exquo (const cl_I& x, const cl_I& y)
     else
     { return -q_r.quotient; }
 }
+
+}  // namespace cln