// cl_error_exquo(). // General includes. #include "cl_sysdep.h" // Specification. #include "cl_I.h" // Implementation. #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(stderr, "Quotient "); fprint(stderr, x); fprint(stderr, " / "); fprint(stderr, y); fprint(stderr, " is not an integer.\n"); cl_abort(); } } // namespace cln