]> www.ginac.de Git - cln.git/blobdiff - src/integer/division/cl_I_trunc2.cc
* */*: Removed problematic stdin, stdout and stderr definitions.
[cln.git] / src / integer / division / cl_I_trunc2.cc
index f9d67006129e479eae9e5ecb10ef509ab21c936b..ac399cc32c8d994fe0e94acf314413b8128ebc88 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_div_t truncate2 (const cl_I& x, const cl_I& y)
 {
 // Methode:
@@ -28,3 +30,5 @@ const cl_I_div_t truncate2 (const cl_I& x, const cl_I& y)
     { q = -q; }
   return q_r;
 }
+
+}  // namespace cln