]> www.ginac.de Git - cln.git/blob - src/integer/division/cl_I_exquoerr.cc
a295c967fa312fd4d369232469cf228fd0d6db42
[cln.git] / src / integer / division / cl_I_exquoerr.cc
1 // cl_error_exquo().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cl_I.h"
8
9
10 // Implementation.
11
12 #include "cl_io.h"
13 #include "cl_integer_io.h"
14 #include "cl_abort.h"
15
16 void cl_error_exquo (const cl_I& x, const cl_I& y)
17 {
18         fprint(cl_stderr, "Quotient ");
19         fprint(cl_stderr, x);
20         fprint(cl_stderr, " / ");
21         fprint(cl_stderr, y);
22         fprint(cl_stderr, " is not an integer.\n");
23         cl_abort();
24 }