]> www.ginac.de Git - cln.git/blobdiff - src/integer/division/cl_I_trunc1.cc
Use paths relative the `src' directory in the #include directives.
[cln.git] / src / integer / division / cl_I_trunc1.cc
index 08f22058594d729709f8a82dde31982f1b247431..8e08959490b5324c6c645072cb120f39a6e3053b 100644 (file)
@@ -1,15 +1,17 @@
 // truncate1().
 
 // General includes.
-#include "cl_sysdep.h"
+#include "base/cl_sysdep.h"
 
 // Specification.
-#include "cl_integer.h"
+#include "cln/integer.h"
 
 
 // Implementation.
 
-#include "cl_I.h"
+#include "integer/cl_I.h"
+
+namespace cln {
 
 const cl_I truncate1 (const cl_I& x, const cl_I& y)
 {
@@ -25,3 +27,5 @@ const cl_I truncate1 (const cl_I& x, const cl_I& y)
     { q = -q; }
   return q;
 }
+
+}  // namespace cln