X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;ds=sidebyside;f=src%2Finteger%2Fdivision%2Fcl_I_exquo.cc;h=771eef8b07b5a48d4aacfd90bef6b11d7c48b299;hb=850abfde7f0d985ba01526c346bcd0d733562943;hp=37d7189bc032a188279abc12e9eb45ae795c86ec;hpb=e0b64ba4f92bb0323e5b241b465d17389ceff2d9;p=cln.git diff --git a/src/integer/division/cl_I_exquo.cc b/src/integer/division/cl_I_exquo.cc index 37d7189..771eef8 100644 --- a/src/integer/division/cl_I_exquo.cc +++ b/src/integer/division/cl_I_exquo.cc @@ -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