X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Finteger%2Fdivision%2Fcl_I_trunc1.cc;h=8e08959490b5324c6c645072cb120f39a6e3053b;hb=8169a19b38c42588b39b21dae5bdb964e2f6b8c6;hp=08f22058594d729709f8a82dde31982f1b247431;hpb=dd9e0f894eec7e2a8cf85078330ddc0a6639090b;p=cln.git diff --git a/src/integer/division/cl_I_trunc1.cc b/src/integer/division/cl_I_trunc1.cc index 08f2205..8e08959 100644 --- a/src/integer/division/cl_I_trunc1.cc +++ b/src/integer/division/cl_I_trunc1.cc @@ -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