X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Finteger%2Fdivision%2Fcl_I_exquoerr.cc;h=a8198ac64c9c5f9dce0ec80ec86beb70e84716b7;hb=f57f23a99a4ec8ded1faf4d61e0fb4fc6127419a;hp=a295c967fa312fd4d369232469cf228fd0d6db42;hpb=dd9e0f894eec7e2a8cf85078330ddc0a6639090b;p=cln.git diff --git a/src/integer/division/cl_I_exquoerr.cc b/src/integer/division/cl_I_exquoerr.cc index a295c96..a8198ac 100644 --- a/src/integer/division/cl_I_exquoerr.cc +++ b/src/integer/division/cl_I_exquoerr.cc @@ -9,16 +9,20 @@ // Implementation. -#include "cl_io.h" -#include "cl_integer_io.h" -#include "cl_abort.h" +#include "cln/io.h" +#include "cln/integer_io.h" +#include "cln/abort.h" + +namespace cln { void cl_error_exquo (const cl_I& x, const cl_I& y) { - fprint(cl_stderr, "Quotient "); - fprint(cl_stderr, x); - fprint(cl_stderr, " / "); - fprint(cl_stderr, y); - fprint(cl_stderr, " is not an integer.\n"); + fprint(std::cerr, "Quotient "); + fprint(std::cerr, x); + fprint(std::cerr, " / "); + fprint(std::cerr, y); + fprint(std::cerr, " is not an integer.\n"); cl_abort(); } + +} // namespace cln